Integration

MCP Server

An MCP server exposing DoableClaw's AI research agent — one tool per research domain, callable individually against a company, an industry, or a pitch deck.

Server
https://ikshan-be-prod-1086070564650.asia-south1.run.app/mcp/research-v4
Transport
Streamable HTTP
Auth
Authorization: Bearer <token>
Registry
io.github.ikshan-ai/doableclaw-mcp

Tools

Each tool runs one research agent standalone. Most take company_name and/or root_url (at least one required); identity is run automatically by any tool that needs it. Every call costs credits from your DoableClaw account.

Tool What it researches Credits
deck Extract and verify claims from a pitch deck's text 1
identity Legal entity, licenses/registrations, operating footprint 2
market Market size/segments/regulatory factors — works company-scoped or industry-only 3
brand_signal Media coverage, social presence, hiring signals, growth proxy 3
market_structure Market players, share, demand signals, value chain 3
technology Tech stack, AI/ML capabilities, infrastructure, patents, trademarks 4
product Products, pricing plans, product gaps 4
people Founders, leadership, headcount trend, key-person risk 4
financial Funding history, inferred financial metrics 5
customer_voice Reviews, success stories, sentiment, pain points, ICP 5
global_benchmark Comparable companies in other markets, each profiled via nested research 6+
competitive Competitors, competitive landscape — the most expensive tool, since each competitor gets a full nested research pass 18
whoami Who you're authenticated as, plus the credit cost table 0

market is the only tool that works with no company at all — pass just industry (optionally geography) for an industry-wide view. deck takes deck_text instead of a company. Tool output is JSON, not prose — the point is structured research data.

Getting a token

  1. Sign in at doableclaw.com, then go to Account → API Access (doableclaw.com/account/api-keys).
  2. Enter a label (e.g. "my laptop") and click Create Key. The plaintext token is shown once — copy it immediately, it can't be retrieved again. It looks like dcresearch_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.
  3. The same page shows your mcp_research_api credit balance and a Buy credits button if you're out.

Revoke a key any time from the same page — an MCP client using a revoked key starts getting 401s immediately.

Client setup

Most MCP clients speak stdio, not remote HTTP directly — bridge with mcp-remote.

{
  "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 environment, or hardcode the token in place of ${DOABLECLAW_MCP_TOKEN} (less safe — avoid committing it anywhere). Restart your client fully after editing its config.

Using ChatGPT, Claude, Gemini, or Grok specifically? See the client setup guide for exact steps per client, including ChatGPT's Developer Mode requirement.

Credits and pricing

Every call is metered against your DoableClaw account's credit balance for the mcp_research_api capability — the same credits system used for other paid features. A call that would exceed your balance is refused before any research runs (nothing is charged). Check your balance and buy more from Account → API Access.

Get your API key

Create a token and start calling research tools from your own client.

Get API Key