Docs
MCP

MCP

Requirements

MCP is available on the Business tier.

  • Kondo desktop app must be open โ€” MCP only works while the Kondo app is running on your computer. Install Kondo.
  • OAuth sign-in โ€” You'll authenticate with your Kondo account the first time you connect.
  • Data privacy โ€” Message data is read from the Kondo app on your computer. Command and response data passes through Kondo's relay in memory and is not stored. Privacy Policy.

Setup

Claude Code

Run this command in your terminal:

claude mcp add kondo --transport http https://mcp.trykondo.com/mcp

Then authenticate by running /mcp in Claude Code and following the sign-in flow.

Claude (web)

  1. Go to claude.ai/settings/integrations
  2. Click Add more integrations, then Add custom MCP server
  3. Enter a name (e.g. "Kondo") and paste the URL:
https://mcp.trykondo.com/mcp
  1. Click Add and complete the sign-in flow

Start a new chat and Kondo's tools will appear in the tools menu.

Claude macOS / Windows App

  1. Open Settings > Connectors or Customize > Connectors
  2. Click Add Connector and enter the URL:
https://mcp.trykondo.com/mcp
  1. Complete the sign-in flow to connect your Kondo account

ChatGPT

Requires a ChatGPT Business, Enterprise, or Edu plan. Plus/Pro users can connect via Developer Mode but cannot publish apps to a workspace.

A workspace Admin or Owner must first enable Developer Mode in Settings > Apps > Advanced settings > Developer mode.

  1. In ChatGPT, go to Settings > Apps > Create
  2. Enter the name Kondo and paste the URL:
https://mcp.trykondo.com/mcp
  1. Click Create and complete the OAuth flow to connect your Kondo account

ChatGPT will show a confirmation prompt before any write action (archive, label, draft, etc.).

Publishing to your workspace

Only Admins and Owners can publish apps for the whole workspace.

  1. Go to Workspace Settings > Apps
  2. Click Drafts, find Kondo, then click Publish
  3. Review any safety warnings (Kondo supports write actions like archiving and labeling)
  4. Once published, all workspace members will see Kondo in their Apps settings

On Business plans, apps cannot be updated after publishing โ€” you must recreate and republish. Enterprise/Edu plans support updates and RBAC controls.

Cursor

  1. Open Cursor Settings > MCP > Add new global MCP server
  2. Paste the following configuration:
{
  "mcpServers": {
    "kondo": {
      "url": "https://mcp.trykondo.com/mcp"
    }
  }
}
  1. Save and restart Cursor. Complete the sign-in flow when prompted.

VS Code (GitHub Copilot)

Create a .vscode/mcp.json file in your workspace:

{
  "servers": {
    "kondo": {
      "type": "http",
      "url": "https://mcp.trykondo.com/mcp"
    }
  }
}

Open the Command Palette (Cmd+Shift+P or Ctrl+Shift+P) and run MCP: List Servers to start the server. Complete the sign-in flow when prompted.

Other tools

Kondo's MCP server uses the Streamable HTTP transport. Any MCP client that supports this transport can connect.

Most MCP clients accept a JSON configuration:

{
  "mcpServers": {
    "kondo": {
      "url": "https://mcp.trykondo.com/mcp"
    }
  }
}

Some clients use httpUrl instead of url for Streamable HTTP (e.g. Gemini CLI):

{
  "mcpServers": {
    "kondo": {
      "httpUrl": "https://mcp.trykondo.com/mcp"
    }
  }
}

If your client only supports local stdio servers, use mcp-remote as a bridge:

{
  "mcpServers": {
    "kondo": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.trykondo.com/mcp"]
    }
  }
}

Examples

Here's what you can do once connected:

PromptWhat happens
"Show me my unread messages"Returns a prioritized summary of your unread messages.
"Draft a follow-up for every chat labeled Lead where I sent the last message more than 3 days ago."Finds matching chats and saves a draft reply to each. You review and send manually.
"Label all recruiter messages as Recruiter"Identifies recruiter chats and applies the label.
"Which chats labeled Lead are waiting on my reply?"Lists chats with that label where the other person sent the last message.
"Go through my chats from the last 3 days and set reminders for anything I need to follow up on."Scans recent chats and identifies follow-ups.

Troubleshooting

ProblemFix
No tools appearMake sure the Kondo app is open.
Tools answer from another computerKondo answers from one device at a time. Open Settings > MCP on this computer and click Switch here.
Sign-in failsRevoke the app in Settings > Account under Connected apps, then reconnect.
Commands stop workingQuit and reopen Kondo, then try again. The app must stay open.

Available tools

These are the tools of the Kondo desktop app's MCP server. Kondo for LinkedIn has a separate MCP server with different tools, see MCP for Kondo for LinkedIn.

Accounts & inboxes

ToolDescription
list_pairingsList your connected messaging accounts and whether each is online
list_inboxesList inboxes, labels, and label filters
list_inboxBrowse the chats in an inbox, with filters (unread, date range, awaiting reply, needs my reply)
list_chatsSearch chats by person name or message text
read_chatRead the messages of one or more chats, including voice message transcripts
navigateOpen a chat, inbox, people, snippets, or a settings page in Kondo and bring the app to the front

Chat actions

ToolDescription
set_chat_draftSave a draft reply, or a first message to someone you haven't messaged yet (does not send, you review and send it)
set_chat_labelAdd, remove, or replace labels on chats
set_chat_archivedArchive or restore chats
set_chat_reminderSet or clear a reminder (archives the chat until the reminder is due)

People

ToolDescription
list_contactsList or search people by name, phone, email, or username, including address book contacts you haven't messaged
read_contactRead a person's details, labels, chats, and note
set_contact_labelAdd, remove, or replace labels on people
set_contact_noteSet or append to the note kept about a person

Labels, inboxes & snippets

ToolDescription
set_labelCreate a label, or rename or recolor one
set_inboxCreate, update, or delete an inbox that combines labels
list_snippetsList saved reply templates
read_snippetRead a snippet's full content
set_snippetCreate or update a snippet with smart placeholders

Preferences

ToolDescription
read_preferencesRead your app preferences, including notifications and quiet hours
set_preferencesChange app preferences

Support

Questions or issues? Contact us.

Disconnecting

To disconnect an MCP client, go to Settings > Account, find the app under Connected apps and click Revoke. This immediately revokes access for that client.