@doist/todoist-ai v0.1.4
Todoist AI SDK
Library for connecting AI agents to Todoist. Includes tools that can be integrated into LLMs, enabling them to access and modify a Todoist account on the user's behalf.
These tools can be used both through an MCP server, or imported directly in other projects to integrate them to your own AI conversational interfaces.
Using tools
1. Add this repository as a dependency
npm install @doist/todoist-ai
2. Import the tools and plug them to an AI
Here's an example using Vercel's AI SDK.
import { tasksListByDate, tasksAddMultiple } from "@doist/todoist-ai";
import { streamText } from "ai";
const result = streamText({
model: yourModel,
system: "You are a helpful Todoist assistant",
tools: {
tasksListByDate,
tasksAddMultiple,
},
});
Using as an MCP server
For convenience, we already include a function that initializes an MCP Server with all the tools available:
import { getMcpServer } from "@doist/todoist-ai";
async function main() {
const server = getMcpServer({ todoistApiKey: process.env.TODOIST_API_KEY });
const transport = new StdioServerTransport();
await server.connect(transport);
}
Features
A key feature of this project is that tools can be reused, and are not written specifically for use in an MCP server. They can be hooked up as tools to other conversational AI interfaces (e.g. Vercel's AI SDK).
This project is in its early stages. Expect more and/or better tools soon.
Nevertheless, our goal is to provide a small set of tools that enable complete workflows, rather than just atomic actions, striking a balance between flexibility and efficiency for LLMs.
Available Tools
- account-overview: Get a Markdown overview of all projects (with hierarchy and sections) and the inbox project.
- project-overview: Get a Markdown overview of a single project, including its sections and all tasks. Tasks are grouped by section, with tasks not in any section listed first.
- projects-list: List all projects for the user.
- projects-search: Search for projects by name or other criteria.
- projects-add-one: Add a new project.
- projects-update-one: Update a project's name by its ID.
- projects-delete-one: Delete a project by its ID.
- sections-search: Search for sections by name or other criteria in a project.
- sections-add-one: Add a new section to a project.
- sections-update-one: Update a section's name by its ID.
- sections-delete-one: Delete a section by its ID.
- tasks-list-by-date: Get tasks by date range.
- tasks-list-overdue: Get overdue tasks.
- tasks-list-for-project: Get tasks by project ID.
- tasks-list-for-section: List tasks for a given section.
- tasks-search: Search tasks by text using Todoist's filter query.
- tasks-add-multiple: Add one or more tasks to a project, section, or parent.
- tasks-update-one: Update an existing task with new values.
- tasks-delete-one: Delete a task by its ID.
- tasks-complete-multiple: Complete one or multiple tasks by ID.
- tasks-organize-multiple: Organize multiple tasks (move, reorder, etc.) in bulk.
- subtasks-list-for-parent-task: List subtasks for a given parent task.
Dependencies
- MCP server using the official @modelcontextprotocol/sdk
- Todoist Typescript API client @doist/todoist-api-typescript
MCP Server Setup
See docs/mcp-server.md for full instructions on setting up the MCP server.
Local Development Setup
See docs/dev-setup.md for full instructions on setting up this repository locally for development and contributing.