Twist MCP Server

An MCP server for interacting with a [Twist](https://twist.com/home) workspace. Written in Python using the [Twist REST

Local serverstdioPython

What is the Twist MCP server?

Twist mcp server lets Claude, Cursor and other MCP clients work with Twist directly. An MCP server for interacting with a Twist workspace. Written in Python using the Twist REST API. Currently for testing purposes only.

What Twist does

An MCP server for interacting with a Twist workspace. Written in Python using the Twist REST API. Currently for testing purposes only.

Tools it exposes

Once connected, the assistant can call these 14 tools directly:

  • Inbox — twist_inbox_get: Get the contents of the user's inbox
  • twist_inbox_archive_all — Archives all threads in a workspace (or, all threads after a given timestamp)
  • twist_inbox_archive — Archives a specific thread by ID
  • twist_inbox_unarchive — Unarchives a specific thread by ID
  • twist_inbox_mark_all_read — Marks all inbox threads as read
  • twist_inbox_get_count — Gets the count of inbox threads
  • Threads — twist_threads_getone: Get a thread by ID
  • twist_threads_get — Get all threads in a channel
  • twist_threads_add — Add a new thread to a channel
  • twist_threads_update — Update an existing thread
  • twist_threads_remove — Remove a thread
  • twist_threads_star — Star a thread
  • twist_threads_unstar — Unstar a thread
  • twist_threads_pin — Pin a thread

Installing the twist mcp server

Setup follows the standard MCP pattern: clone or install the server, then register it in your client's configuration file and restart the client. The configuration snippets on this page cover Claude Desktop, Claude Code and Cursor.

Configuration

Before the server will start you need to supply 2 environment variables: TWIST_API_TOKEN, TWIST_WORKSPACE_ID. Keep credentials in your client's env block or a secrets manager rather than committing them.

Requirements

  • Python 3.10+ - UV package manager (installation guide) - Twist API token - Twist Workspace ID

Where it fits

Developer-tool servers are usually the first ones people connect, because they turn "help me with this code" into an assistant that can actually read the repo and act on it. Twist sits in that group, and the shape of its toolset — Inbox, twist_inbox_archive_all, twist_inbox_archive among others — tells you what it is really for. Worth comparing against the other developer tools servers in this directory before you commit to one, since several overlap in scope but differ sharply in setup cost and permissions.

Practical notes

  • This server runs locally, so it operates with whatever access your machine and its credentials already have. Scope that deliberately rather than by default.
  • It will not start until its required credentials are present, so set those before wondering why the tools never appear.
  • With 14 tools exposed, expect a noticeable bump in prompt size — disable it in projects that never use Twist.
  • Maintained by mikemc, written in Python.
  • MCP clients ask for confirmation before each tool call by default. Keep that on while you learn what the twist mcp server actually does with your data.
  • Every entry in this directory is reviewed by hand before it goes live, and details are checked against the project's own documentation.

Available tools

ToolWhat it does
Inboxtwist_inbox_get: Get the contents of the user's inbox
twist_inbox_archive_allArchives all threads in a workspace (or, all threads after a given timestamp)
twist_inbox_archiveArchives a specific thread by ID
twist_inbox_unarchiveUnarchives a specific thread by ID
twist_inbox_mark_all_readMarks all inbox threads as read
twist_inbox_get_countGets the count of inbox threads
Threadstwist_threads_getone: Get a thread by ID
twist_threads_getGet all threads in a channel
twist_threads_addAdd a new thread to a channel
twist_threads_updateUpdate an existing thread
twist_threads_removeRemove a thread
twist_threads_starStar a thread
twist_threads_unstarUnstar a thread
twist_threads_pinPin a thread

How to install the Twist MCP server

{
  "mcpServers": {
    "twist": {
      "command": "uv",
      "args": [
        "--directory",
        "/absolute/path/to/twist-mcp-server",
        "run",
        "main.py"
      ],
      "env": {
        "TWIST_API_TOKEN": "your_twist_api_token",
        "TWIST_WORKSPACE_ID": "your_twist_workspace_id"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • Python 3.10+ - UV package manager (installation guide) - Twist API token - Twist Workspace ID
VariableDescriptionRequired
TWIST_API_TOKENCredential the server authenticates with.Yes
TWIST_WORKSPACE_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Twist to Inbox.
  • Use Twist to twist inbox archive all.
  • Use Twist to twist inbox archive.

Frequently asked questions

It connects Twist to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (Inbox, twist_inbox_archive_all, twist_inbox_archive, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Twist directly.