Connect your agent
Every client below connects to the same endpoint:
https://api.repliqo.app/mcpAll of them use OAuth — you’ll be sent to Repliqo to sign in (if needed) and approve access on a consent screen. No API keys to copy.
Claude Code
Section titled “Claude Code”claude mcp add --transport http repliqo https://api.repliqo.app/mcpThen run /mcp inside Claude Code to complete the sign-in. Add --scope user to make the server available in all your projects.
Claude (claude.ai, Desktop, and mobile)
Section titled “Claude (claude.ai, Desktop, and mobile)”- Go to Settings → Connectors → Add custom connector.
- Paste
https://api.repliqo.app/mcpand click Add. - Click Connect and approve access in the Repliqo window.
Custom connectors are available on all Claude plans; on Team and Enterprise an admin needs to add the connector for the organization.
Cursor
Section titled “Cursor”Click to install:
Or add it to ~/.cursor/mcp.json yourself:
{ "mcpServers": { "repliqo": { "url": "https://api.repliqo.app/mcp" } }}VS Code (GitHub Copilot)
Section titled “VS Code (GitHub Copilot)”code --add-mcp '{"name": "repliqo", "url": "https://api.repliqo.app/mcp"}'Or click Add Repliqo to VS Code, or add the server to .vscode/mcp.json in a workspace:
{ "servers": { "repliqo": { "url": "https://api.repliqo.app/mcp" } }}ChatGPT
Section titled “ChatGPT”- Enable Settings → Apps & Connectors → Advanced → Developer mode (Plus/Pro/Business plan required).
- Add a custom connector with the URL
https://api.repliqo.app/mcpand complete the OAuth flow.
Repliqo also exposes the search and fetch tools ChatGPT’s connector contract and Deep Research require, so research over your inbox works out of the box. Note that ChatGPT allows write tools only on Business/Enterprise/Edu plans — on Plus/Pro your agent can read and search but not triage.
Windsurf
Section titled “Windsurf”Add to ~/.codeium/windsurf/mcp_config.json:
{ "mcpServers": { "repliqo": { "serverUrl": "https://api.repliqo.app/mcp" } }}Gemini CLI
Section titled “Gemini CLI”Add to ~/.gemini/settings.json (note the key is httpUrl, not url):
{ "mcpServers": { "repliqo": { "httpUrl": "https://api.repliqo.app/mcp" } }}Codex CLI
Section titled “Codex CLI”codex mcp add repliqo --url https://api.repliqo.app/mcpcodex mcp login repliqoAnything else
Section titled “Anything else”Any client that supports remote MCP servers with streamable HTTP + OAuth works with the bare URL. For older clients that only speak stdio, bridge with mcp-remote:
{ "mcpServers": { "repliqo": { "command": "npx", "args": ["-y", "mcp-remote", "https://api.repliqo.app/mcp"] } }}Troubleshooting
Section titled “Troubleshooting”- 401 / “authentication required” — your token expired and the client didn’t refresh it. Re-run the client’s login step (e.g.
/mcp→ reconnect in Claude Code,codex mcp login repliqo). - 429 / rate limited — the server caps request rates per token; agents should back off and retry.
- Write tools missing — the token was granted
inbox:readonly. Remove and re-add the connector, approving both scopes on the consent screen. - Agent can’t see a workspace or inbox — the connection was limited on the consent screen. Reconnect and pick “Everything” or add the missing workspace/inbox to the selection.