The Peaka MCP server works with any client that supports the Model Context Protocol. Pick your client below for the right config snippet and a link to its “add an MCP server” instructions. Two configuration patterns appear throughout this page:Documentation Index
Fetch the complete documentation index at: https://docs.peaka.com/llms.txt
Use this file to discover all available pages before exploring further.
- Remote (recommended). Point the client at
https://mcp.peaka.studio/mcpand authenticate via OAuth. Some clients accept a remote URL natively; others use themcp-remotebridge to expose it as a stdio server. - Local (NPM). Run
@peaka/mcp-server-peakavianpxand authenticate withPEAKA_API_KEY.
Claude Desktop
Add an MCP server in Claude Desktop ↗ Remote — Claude Desktop adds remote MCP servers through the UI, not the JSON config file.Add custom connector
Click Add custom connector and paste
https://mcp.peaka.studio/mcp as the MCP Server URL.claude_desktop_config.json:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json
Claude Code
Add an MCP server in Claude Code ↗Cursor
Add an MCP server in Cursor ↗ Edit~/.cursor/mcp.json (macOS/Linux) or %USERPROFILE%\.cursor\mcp.json (Windows):
Windsurf
Add an MCP server in Windsurf ↗ Edit~/.codeium/windsurf/mcp_config.json:
VS Code (GitHub Copilot)
Add an MCP server in VS Code ↗ Edit.vscode/mcp.json in your workspace, or your user-level mcp.json:
Zed
Add an MCP server in Zed ↗ Open the command palette →agent: add context server, or edit settings.json:
Cline
Add an MCP server in Cline ↗ Open Cline →MCP Servers → Configure MCP Servers:
ChatGPT (Custom Connectors)
Add a custom connector in ChatGPT ↗ In ChatGPT settings → Connectors → Add custom connector, enter:- MCP Server URL:
https://mcp.peaka.studio/mcp - Authentication: OAuth
Any other client
Any MCP-compliant client can connect. Use one of the patterns above as a template:- If the client supports remote MCP natively, give it
https://mcp.peaka.studio/mcp. - If it only supports stdio, wrap the URL with
npx -y mcp-remote https://mcp.peaka.studio/mcp. - If you’d rather use an API key, run
npx -y @peaka/mcp-server-peaka@latestwithPEAKA_API_KEYin the environment.