How to use the systeme.io MCP server (Model Context Protocol)
The new MCP server feature gives users, partners, and developers a powerful new way to interact with systeme.io using AI tools.
Note: The MCP server currently focuses on contact management (contacts, tags, and custom fields).
What is MCP?
MCP (Model Context Protocol) is a standard that enables AI assistants (such as ChatGPT or Claude) to connect securely to external platforms.
With MCP, you can use natural language commands to interact with your systeme.io data. For example, you can ask ChatGPT to find a contact or add a tag just by typing a sentence.
Our MCP feature currently provides direct access to specific contact-management features, allowing you to use AI to manage your contacts, tags, and contact fields.
How does our MCP server work?
The systeme.io MCP server allows AI applications to access specific contact-management tools within your account.
It creates a bridge between:
- The host: Your AI tool (e.g., ChatGPT, Claude).
- The server: Your systeme.io account.
Once connected, the AI can execute commands to manage your contacts and tags automatically.
For technical details, please refer to our official MCP documentation: https://developer.systeme.io/docs/mcp-server
How to generate your MCP keys
To connect an AI tool, you first need to generate a secure MCP key.
Click on your profile picture and select Settings (1).

In the left menu, click MCP & API keys (2).

Scroll down to the MCP keys section and click Create (3).

Give your key a name, set an expiration date, and click Save (4).

Your key is now ready.

What can you do with our MCP server?
You can use AI tools to perform the following actions:
- Create and update contacts: Add new contacts or update existing ones.
- Delete contacts: Remove contacts from your list.
- List and retrieve contacts: Use filters to list contacts or fetch specific contact details.
- Manage tags: Create, assign, list, and remove tags from contacts.
- Retrieve contact fields (custom fields): List available contact fields and their identifiers (slugs) so the AI can correctly fill in and update contact information.
How to integrate your account with ChatGPT using MCP keys
Connecting ChatGPT to your systeme.io account is simple. You’ll need a ChatGPT plan/workspace that supports connecting to MCP servers/external tools.
For a detailed step-by-step walkthrough, see our complete guide on integrating ChatGPT with systeme.io using MCP keys: https://developer.systeme.io/docs/mcp-integration-with-chatgpt.
How to integrate your account with Claude using MCP keys (on Windows)
Note: Connecting via MCP is currently only supported on the Claude Desktop application, not on the web browser version (This guide is specific to Windows users).
To connect your systeme.io account to Claude Desktop, you will need to add your MCP key to your claude_desktop_config.json file.
If you experience "Server disconnected" errors or infinite loading, you will need to tweak your configuration to bypass standard Windows limitations. Make sure you apply the following rules:
- Use the Windows short path: If Node.js is installed in a folder with spaces (like
C:\Program Files\nodejs), it will break the background connection. Use the short path"C:\\PROGRA~1\\nodejs\\npx.cmd"instead of simply"npx". - Add the
-yflag: Include"-y"in your arguments to bypass hidden installation prompts that can cause the connection to hang. - Include the
/mcpURL suffix: Ensure your endpoint URL is exactlyhttps://mcp.systeme.io/mcp(the base URL alone will not work).
Example of a working Windows configuration:
"systeme-io": {
"command": "C:/PROGRA~1/nodejs/npx.cmd",
"args":[
"-y",
"mcp-remote",
"https://mcp.systeme.io/mcp",
"--header",
"X-MCP-Key: <YOUR_MCP_KEY_HERE>"
]
}
Notes:
- For security reasons, MCP keys are valid for a maximum of 90 days.
- You can create a maximum of two MCP keys at a time.
- This is an initial release implementation and does not yet support the recommended authentication method (OAuth). So you may experience minor stability issues.
- OAuth support is currently planned. Once released, it will improve security and eliminate the need for key expiration.