todoist_get_project
Retrieve a specific project from Todoist using its unique project ID. Enables users to access and manage project details directly through the Todoist MCP Server.
Instructions
Get a single project from Todoist
Args: project_id: ID of the project to retrieve
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"title": "Project Id",
"type": "string"
}
},
"required": [
"project_id"
],
"title": "todoist_get_projectArguments",
"type": "object"
}