├── .editorconfig ├── .gitignore ├── .prettierrc ├── Dockerfile ├── LICENSE.md ├── README.md ├── eslint.config.js ├── package.json ├── scripts └── generate-version.js ├── smithery.yaml ├── src ├── clients.ts ├── index.ts ├── prompts.ts ├── prompts │ └── projects.ts ├── tools.ts ├── tools │ ├── comments.ts │ ├── labels.ts │ ├── projects.ts │ ├── sections.ts │ ├── tasks.ts │ └── utils.ts └── utils │ ├── TodoistClient.ts │ ├── handlers.ts │ ├── helpers.ts │ ├── types.ts │ └── version.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/eslint.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/package.json -------------------------------------------------------------------------------- /scripts/generate-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/scripts/generate-version.js -------------------------------------------------------------------------------- /smithery.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/smithery.yaml -------------------------------------------------------------------------------- /src/clients.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/clients.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/prompts.ts -------------------------------------------------------------------------------- /src/prompts/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/prompts/projects.ts -------------------------------------------------------------------------------- /src/tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/tools.ts -------------------------------------------------------------------------------- /src/tools/comments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/tools/comments.ts -------------------------------------------------------------------------------- /src/tools/labels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/tools/labels.ts -------------------------------------------------------------------------------- /src/tools/projects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/tools/projects.ts -------------------------------------------------------------------------------- /src/tools/sections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/tools/sections.ts -------------------------------------------------------------------------------- /src/tools/tasks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/tools/tasks.ts -------------------------------------------------------------------------------- /src/tools/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/tools/utils.ts -------------------------------------------------------------------------------- /src/utils/TodoistClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/utils/TodoistClient.ts -------------------------------------------------------------------------------- /src/utils/handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/utils/handlers.ts -------------------------------------------------------------------------------- /src/utils/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/utils/helpers.ts -------------------------------------------------------------------------------- /src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/src/utils/types.ts -------------------------------------------------------------------------------- /src/utils/version.ts: -------------------------------------------------------------------------------- 1 | // Auto-generated file, do not edit 2 | export const version = '1.2.4'; 3 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislavlysenko0912/todoist-mcp-server/HEAD/tsconfig.json --------------------------------------------------------------------------------