Skip to main content
Kondo has a built-in MCP server that lets AI assistants read your inbox, draft replies, and manage conversations directly through your LinkedIn account.
MCP is available on the Business tier.

Enable MCP

  1. Open Settings in the Kondo web app
  2. Scroll to the MCP section and click Enable MCP
Keep your Kondo tab open — MCP commands are executed by your browser tab.

Claude Code

Run this command in your terminal:
claude mcp add kondo --transport http https://relay.trykondo.com/mcp
Then authenticate by running /mcp in Claude Code and following the sign-in flow.

claude.ai

  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://relay.trykondo.com/mcp
  1. Click Add and complete the sign-in flow
Start a new conversation and Kondo’s tools will appear in the tools menu.

Claude Desktop

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

Cursor

  1. Open Cursor Settings > MCP > Add new global MCP server
  2. Paste the following configuration:
{
  "mcpServers": {
    "kondo": {
      "url": "https://relay.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://relay.trykondo.com/mcp"
    }
  }
}
Open the Command Palette (Cmd+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://relay.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://relay.trykondo.com/mcp"]
    }
  }
}

Available tools

List all available inboxes, user-created labels, and composite filters. Use this to discover label UUIDs before applying labels with other tools.Example prompts:
  • “What labels do I have in Kondo?”
  • “Show me all my inboxes”
List chats in an inbox with filters like unread, date range, or waiting for reply.Example prompts:
  • “Show me my unread messages”
  • “What messages came in this week?”
  • “Which chats am I waiting on a reply for?”
Search chats by person name or message text across the local cache.Example prompts:
  • “Find my conversations with Sarah”
  • “Search for messages about the partnership proposal”
Read message history for one or more chats.Example prompts:
  • “Show me the messages in that conversation”
  • “What did we talk about?”
Fetch full message history from LinkedIn. Use this when cached messages are incomplete.Example prompts:
  • “Load the full history for this chat”
  • “Fetch all messages ever sent in this conversation”
Save a draft reply on a chat. Does not send — the user must open the chat and send manually.Example prompts:
  • “Draft a reply thanking them for the intro”
  • “Write a follow-up message for this conversation”
Add, remove, or replace labels on chats.Example prompts:
  • “Label this conversation as Lead”
  • “Remove the Partner label from these chats”
Archive or restore chats.Example prompts:
  • “Archive this conversation”
  • “Restore that chat back to my inbox”
Snooze chats until a future time.Example prompts:
  • “Remind me about this chat on Monday”
  • “Snooze this for 3 days”
List or search LinkedIn connections by name, company, title, or school.Example prompts:
  • “Find my connections at Google”
  • “Search for people with Director in their title”
Read the CRM-style note on a connection.Example prompts:
  • “What notes do I have on this person?”
  • “Show me my notes about Sarah”
Set or append to a connection’s note.Example prompts:
  • “Add to their note: met at SaaStr 2026”
  • “Save a note that they’re interested in the enterprise plan”
Add, remove, or replace labels on connections.Example prompts:
  • “Tag this person as a Partner”
  • “Label all these connections as Investor”
List pending connection invites.Example prompts:
  • “Show me my pending invites”
  • “Who wants to connect with me?”
Accept or ignore connection invites.Example prompts:
  • “Accept this invite”
  • “Ignore these connection requests”
List saved reply templates.Example prompts:
  • “Show me my snippets”
  • “What reply templates do I have?”
Read a snippet’s full content.Example prompts:
  • “Show me the intro snippet”
  • “What does my follow-up template say?”
Create or update a snippet. Supports smart placeholders like {{first_name}} that auto-fill from the recipient’s profile.Example prompts:
  • “Create a snippet for cold outreach”
  • “Update my intro template to mention the new product”
Create or rename a label.Example prompts:
  • “Create a new label called Investor”
  • “Rename the Partner label to Strategic Partner”

Disconnecting

To disconnect MCP, go to Settings > MCP and toggle it off. This immediately revokes access — any connected client will stop working.