Twist AI MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Twist AI MCP Servershow me my inbox threads"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Twist AI and MCP SDK
Library for connecting AI agents to Twist. Includes tools that can be integrated into LLMs, enabling them to access and interact with a Twist workspace 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/twist-ai2. Import the tools and plug them to an AI
Here's an example using Vercel's AI SDK.
import { fetchInbox, reply, markDone } from '@doist/twist-ai'
import { streamText } from 'ai'
const result = streamText({
model: yourModel,
system: 'You are a helpful Twist assistant',
tools: {
fetchInbox,
reply,
markDone,
},
})Related MCP server: Todoist AI MCP Server
Using as an MCP server
Quick Start
You can run the MCP server directly with npx:
npx @doist/twist-aiSetup Guide
Claude Desktop
Add to your Claude Desktop configuration file (claude_desktop_config.json):
{
"mcpServers": {
"twist": {
"command": "npx",
"args": ["-y", "@doist/twist-ai"],
"env": {
"TWIST_API_KEY": "your-twist-api-key-here"
}
}
}
}Cursor
Create a configuration file:
Global:
~/.cursor/mcp.jsonProject-specific:
.cursor/mcp.json
{
"mcpServers": {
"twist": {
"command": "npx",
"args": ["-y", "@doist/twist-ai"],
"env": {
"TWIST_API_KEY": "your-twist-api-key-here"
}
}
}
}Then enable the server in Cursor settings if prompted.
Claude Code (CLI)
claude mcp add twist npx @doist/twist-aiThen set your API key:
export TWIST_API_KEY=your-twist-api-key-hereVisual Studio Code
Open Command Palette → MCP: Add Server
Configure the server:
{
"servers": {
"twist": {
"command": "npx",
"args": ["-y", "@doist/twist-ai"],
"env": {
"TWIST_API_KEY": "your-twist-api-key-here"
}
}
}
}Getting your Twist API Key
Create a new integration or use an existing one
Copy your API key
Add it to your MCP configuration as shown above
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
userInfo - Get information about the current user and their workspaces
fetchInbox - Fetch threads and conversations from the inbox
loadThread - Load a specific thread with its comments
loadConversation - Load a specific conversation with its messages
searchContent - Search across a workspace for threads, comments, and messages
createThread - Create a new thread in a channel. Accepts an optional
displayInInboxboolean (defaultfalse). Whentrue, the thread is unarchived after creation so it appears in the author's Inbox. See also TWIST_CREATE_THREAD_DISPLAY_IN_INBOX.reply - Reply to threads or conversations
react - Add reactions to threads, comments, conversations, or messages
markDone - Mark threads or conversations as done (read and/or archived)
buildLink - Build URLs to Twist resources
For more details on each tool, see the src/tools directory.
Environment Variables
Variable | Default | Description |
| (required) | Your Twist API key. |
|
| Set to |
Dependencies
MCP server using the official @modelcontextprotocol/sdk
Twist TypeScript SDK @doist/twist-sdk
Local Development Setup
Prerequisites
Node.js 18 or higher
npm
A Twist account with API access
Setup
Clone the repository:
git clone https://github.com/doist/twist-ai.git
cd twist-aiInstall dependencies:
npm installCreate a
.envfile with your Twist API key:
TWIST_API_KEY=your-twist-api-key-hereBuild the project:
npm run buildDevelopment Commands
npm start- Build and run the MCP inspector for testingnpm run dev- Development mode with auto-rebuild and restartnpm test- Run all testsnpm run type-check- Run TypeScript type checkingnpm run format:check- Run linting and formatting checksnpm run format:fix- Auto-fix linting and formatting issues
Contributing
Contributions are welcome! Please ensure:
All tests pass (
npm test)Code is properly typed (
npm run type-check)Code passes linting and formatting checks (
npm run format:check)
Use Conventional Commits for commit messages:
feat:for new featuresfix:for bug fixesdocs:for documentation changestest:for test changeschore:for maintenance tasks
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Doist/twist-ai'
If you have feedback or need assistance with the MCP directory API, please join our Discord server