Skip to main content
Glama

Todoist MCP Server

by mikemc

todoist_add_project

Add a new project to Todoist with customizable options such as name, color, parent project ID, favorite status, and view style for better task organization and management.

Instructions

Create a new project in Todoist

Args: name: Name of the project color: Color of the project (optional) parent_id: ID of the parent project for creating sub-projects (optional) is_favorite: Whether the project should be marked as favorite (optional) view_style: View style of the project, either 'list' or 'board' (optional)

Input Schema

NameRequiredDescriptionDefault
colorNo
is_favoriteNo
nameYes
parent_idNo
view_styleNo

Input Schema (JSON Schema)

{ "properties": { "color": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Color" }, "is_favorite": { "anyOf": [ { "type": "boolean" }, { "type": "null" } ], "default": null, "title": "Is Favorite" }, "name": { "title": "Name", "type": "string" }, "parent_id": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Parent Id" }, "view_style": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "View Style" } }, "required": [ "name" ], "title": "todoist_add_projectArguments", "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mikemc/todoist-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server