get_user_project_tasks
Retrieve all tasks associated with a specific project assigned to the current user by providing the project ID within the MoCo MCP Server.
Instructions
Get all tasks for a specific assigned project by project ID. Only works for projects assigned to the current user.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectId | Yes | Project ID to retrieve tasks for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectId": {
"description": "Project ID to retrieve tasks for",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"projectId"
],
"type": "object"
}