# Get Task

`quo_get-task` · Quo MCP tool · Tasks

Fetch a single task from the connected Quo account by ID.

## Quo Frequently Asked Questions

**What does the Get Task tool do?**

This page documents the Get Task tool (`quo_get-task`). Fetch a single task from the connected Quo account by ID. It is one of the Quo Tasks tools, invoked through your firm's Weave MCP connection and available to members whose access level permits it.

**What is the Quo integration?**

The Quo integration connects your firm's Quo account to Weave. Quo is a cloud phone/SMS platform. This integration exposes calls, messages, contacts, conversations, and tasks as governed MCP tools, scoped per member by access level. It groups 36 tools into 6 categories, exposed through your firm's Weave MCP connection and filtered per member by access level.

**How does my firm connect Quo to Weave?**

An admin connects Quo once for the whole firm by entering your Quo workspace API key in the Weave console. Every member then works through that single connection; there is no per-user Quo login. Your key is encrypted at rest and stays inside Weave's infrastructure.

**Do I need to install or configure anything locally?**

No. Weave is fully hosted, so there is nothing to install, run, or maintain on your own machines. After an admin connects Quo once from the console, each member simply points their AI assistant at your firm's Weave MCP endpoint, and the tools they are allowed to use appear automatically based on their access level.

**Can everyone on my team use every tool?**

No. Tools are exposed per member by access level, so each person only sees the Quo tools their role permits.

**Are changes made through these tools reversible?**

Reads are always safe. Sending a text cannot be undone, once sent it can't be recalled, and it spends the workspace's prepaid SMS credits. Deletes are irreversible: delete-contact and delete-task permanently remove the record from Quo. Most other actions can be reversed with a follow-up tool (for example reopen-task or unassign-task).

**Why can't I send a text to a US number?**

Sending SMS to US numbers requires your Quo account to have completed US Carrier Registration. That is a Quo-side prerequisite; once it is done, send-message works for US recipients.

## Related
- /integrations/quo/tasks/list-tasks/
- /integrations/quo/tasks/update-task/

## Input

- **taskId** `string` (required, min length: 1) — Internal identifier of the task to fetch.

## Output

- **data** `object` (required) — The requested task.
  - **taskId** `string` (required) — Internal identifier of the task.
  - **phoneNumberId** `string | null` (required) — Internal identifier of the associated phone number, or null if unset.
  - **conversationId** `string | null` (required) — Internal identifier of the associated conversation, or null if unset.
  - **activityId** `string | null` (required) — Internal identifier of the associated activity, or null if unset.
  - **phoneNumberGroupId** `string | null` (required) — Internal identifier of the associated phone number group, or null if unset.
  - **orgId** `string` (required) — Internal identifier of the owning organization.
  - **title** `string | null` (required) — Title of the task, or null if unset.
  - **description** `string | null` (required) — Description of the task, or null if unset.
  - **dueDate** `string | null` (required) — ISO 8601 due date/time of the task, or null if unset.
  - **assignedTo** `string | null` (required) — Identifier of the user (or system user) the task is assigned to, or null if unassigned.
  - **assignedBy** `string | null` (required) — Identifier of the user (or system user) who assigned the task, or null if unset.
  - **createdAt** `string` (required) — ISO 8601 timestamp the task was created.
  - **createdBy** `string` (required) — Identifier of the user who created the task.
  - **completed** `boolean` (required) — Whether the task has been completed.
  - **isDeleted** `boolean` (required) — Whether the task has been deleted.
  - **revision** `string` (required) — Revision identifier of the task.
