Connect to an AI agent
Integrate with AI agents for interactive use cases, such as saving personal, team, and organizational preferences, standards, and policies.
Cursor Desktop
Automated setup
See the Quick Start.
Manual setup
-
In Cursor Desktop, choose Cursor>Settings>Cursor Settings>Tools & MCPs>New MCP Server.
-
Modify the
mcp.jsonfile that Cursor opens to add the following MCP server configuration.{ "mcpServers": { "meko": { "url": "<mcp-server-url>", "headers": { "API_KEY": "<mcp-server-api-key>" } } } }The result should look like the following:

-
Verify the Connection by entering the following in chat.
Is Cursor configured with an MCP Server for Meko?
Cursor Web
This section is under development. Check back soon.
Claude Desktop
Automated setup
See the Quick Start.
Manual setup
In Claude Desktop (whether used for Chat, Cowork, or Code):
-
On a Mac, choose Claude>Settings>Developer>Edit Config.
-
Edit the
claude_desktop_config.jsonfile to add the following MCP Server entry.{ "mcpServers": { "meko": { "command": "npx", "args": [ "-y", "mcp-remote", "<mcp-server-url>", "--allow-http" ], "env": { "API_KEY": "<mcp-server-api-key>" } } } } -
Quit and restart Claude Desktop.
The result should look like the following:
Handling errorsIf you see errors when restarting Claude, examine the log file that appears. Verify that you have the correct version of node.js binaries in your path, use absolute paths, and consult online MCP Server configuration troubleshooting guides.
-
Verify the connection by entering the following in chat:
Is Claude configured with an MCP Server for Meko?
Claude Code
Automated setup
See the Quick Start.
Manual setup
-
Run the setup command in your shell to add the Meko MCP server to Claude Code:
> claude mcp add --scope user --transport http meko <mcp-server-url> --header "API_KEY: <mcp-server-api-key>" -
Verify the connection by entering the following at the command-line console:
Is Claude configured with an MCP Server for Meko?You should see a response like the following:

Open AI Codex Desktop
Manual setup
-
In Codex Desktop, choose Codex>Settings>MCP servers>Add server>Streamable HTTP.
-
Enter a name for the Meko MCP server.
-
Enter the URL of the Meko MCP server.
-
Enter a name (such as 'MEKO_MCP_TOKEN') for the Bearer token env var, and click Save.
The result should look like the following:

-
Set the MEKO_MCP_TOKEN environment variable with your Meko API key in your terminal using the following command:
launchctl setenv MEKO_MCP_TOKEN <mcp-server-api-key> -
Verify that you set the MEKO_MCP_TOKEN correctly with your Meko MCP Server API Key.
launchctl getenv MEKO_MCP_TOKEN -
Quit and restart Codex Desktop.
-
Verify the connection by entering the following in chat:
Is Codex Desktop configured with an MCP Server for Meko?
VS Code
-
Run the following command:
echo "### Installing the latest Node.js ###" curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash source ~/.$(basename $SHELL)rc nvm install --lts echo "### Registering the Meko MCP server ###" npx mcp-add@latest \ --name meko \ --type stdio \ --command 'npx -y mcp-remote <mcp-server-url> --allow-http' \ --env 'MEKO_API_KEY=<mcp-server-api-key>' \ --headers 'MEKO_API_KEY=<mcp-server-api-key>' \ --scope global \ --clients 'vscode'Replace
<mcp-server-url>and<mcp-server-api-key>with the URL and API key you saved. -
Verify the connection by entering the following in chat:
Is VS Code configured with an MCP Server for Meko?