Guide
Client Setup
Every major AI client speaks MCP a little differently — some want a plain connector URL, some need a config file, and some gate custom servers behind a setting you have to turn on first. Pick your client below.
Claude and Gemini need an API key up front — grab one from Account → API Access . ChatGPT signs you in directly instead, no key needed. See the MCP docs for the full tool list and credit costs.
ChatGPT
Plus, Pro, Business, or Enterprise plan required — Developer Mode isn't available on the free tier.
By default, ChatGPT connectors only get search/fetch-style access.
Running a full multi-tool server like DoableClaw's needs Developer mode,
a setting you turn on once per account.
- Click your name in the bottom-left corner → Settings.
- Open Plugins and turn on Developer mode. This unlocks full tool-calling for custom MCP connectors, not just search/fetch.
- Back in Plugins, click Browse, then + / Add custom.
-
Fill in:
- Name:
Doable Claw - Description:
AI research on companies and industries — one MCP tool per research domain, powered by DoableClaw. - Connection: URL →
https://ikshan-be-prod-6gbup6suoq-el.a.run.app/mcp/research-v4
- Name:
- Check "I understand and want to continue", then click Create.
- A sign-in modal opens — sign in with your DoableClaw account to connect it. No API key or token to paste here; ChatGPT and DoableClaw handle auth between themselves.
- Open a new chat — Doable Claw is ready to call.
The exact wording of these settings shifts as OpenAI iterates on the connectors UI — if a step doesn't match what you see, look for "Developer mode" under Plugins settings, or "custom connector" wherever connectors are added.
Claude
Works on Claude.ai (web), Claude Desktop, and Claude Code — two ways to connect.
Option A — Connectors UI (Claude.ai / Desktop)
- Open Settings → Connectors.
- Click Add custom connector.
- Paste the server URL:
https://ikshan-be-prod-6gbup6suoq-el.a.run.app/mcp/research-v4. - Claude's connector UI is built around OAuth. If it doesn't offer a place to paste a bearer token, use Option B below instead.
- Once added, enable the connector from the tools (plug) icon in the message composer.
Option B — Config file (Claude Desktop)
- Open Settings → Developer → Edit Config (or find
claude_desktop_config.jsondirectly). - Add the block below, then restart Claude Desktop fully.
{
"mcpServers": {
"doableclaw-research": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://ikshan-be-prod-6gbup6suoq-el.a.run.app/mcp/research-v4",
"--header", "Authorization:Bearer ${DOABLECLAW_MCP_TOKEN}"
]
}
}
}
Set DOABLECLAW_MCP_TOKEN in your shell environment before launching Claude
Desktop, or hardcode the token in place of ${DOABLECLAW_MCP_TOKEN} (avoid committing it anywhere).
Gemini
Custom remote MCP servers connect through the Gemini CLI today — the consumer gemini.google.com app only offers Google's own curated connectors.
- Install the Gemini CLI if you haven't already.
- Open (or create)
~/.gemini/settings.json— or a project-local.gemini/settings.jsonto scope it to one project. - Add an
mcpServersblock using the samemcp-remotebridge as Claude Desktop:
{
"mcpServers": {
"doableclaw-research": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://ikshan-be-prod-6gbup6suoq-el.a.run.app/mcp/research-v4",
"--header", "Authorization:Bearer ${DOABLECLAW_MCP_TOKEN}"
]
}
}
} - Set
DOABLECLAW_MCP_TOKENin your environment, then restart the CLI. - Run
/mcpinside a Gemini CLI session to confirmdoableclaw-researchis connected and list its tools.
Grok
xAI is still rolling custom MCP connectors out across plans, so this flow moves faster than the others — check grok.com's own docs if a step below has shifted.
- In grok.com, open Settings → Connectors (sometimes labeled Integrations or Tools).
- Choose Add custom MCP server.
-
Fill in:
- Server URL:
https://ikshan-be-prod-6gbup6suoq-el.a.run.app/mcp/research-v4 - Auth header:
Authorization=Bearer <your dcresearch_... token>
- Server URL:
- Save, then enable DoableClaw Research from the tools menu in a conversation.