{
  "markdown": "# DoableClaw Research MCP\n\nAn MCP server exposing DoableClaw's AI research agent — one tool per research\ndomain, callable individually against a company, an industry, or a pitch deck.\nBacked by [doableclaw.com](https://doableclaw.com).\n\n- **Server:** `https://ikshan-be-prod-6gbup6suoq-el.a.run.app/mcp/research-v4`\n- **Transport:** Streamable HTTP\n- **Auth:** `Authorization: Bearer <token>` — see [Getting a token](#getting-a-token)\n- **Registry entry:** `io.github.ikshan-ai/doableclaw-mcp`\n\n## Tools\n\nEach tool runs one research agent standalone. Most take `company_name` and/or\n`root_url` (at least one required); `identity` is run automatically by any\ntool that needs it, so you don't call it yourself unless identity is all you\nwant. Every call costs credits from your DoableClaw account — see cost below.\n\n| Tool | What it researches | Credits |\n|---|---|---|\n| `deck` | Extract and verify claims from a pitch deck's text | 1 |\n| `identity` | Legal entity, licenses/registrations, operating footprint | 2 |\n| `market` | Market size/segments/regulatory factors — works company-scoped or industry-only | 3 |\n| `brand_signal` | Media coverage, social presence, hiring signals, growth proxy | 3 |\n| `market_structure` | Market players, share, demand signals, value chain | 3 |\n| `technology` | Tech stack, AI/ML capabilities, infrastructure, patents, trademarks | 4 |\n| `product` | Products, pricing plans, product gaps | 4 |\n| `people` | Founders, leadership, headcount trend, key-person risk | 4 |\n| `financial` | Funding history, inferred financial metrics | 5 |\n| `customer_voice` | Reviews, success stories, sentiment, pain points, ICP | 5 |\n| `global_benchmark` | Comparable companies in other markets, each profiled via nested research — cost varies a lot with how many analogs get found | 6 |\n| `competitive` | Competitors, competitive landscape — the most expensive tool by a wide margin, since profiling each competitor runs a full nested research pass | 18 |\n| `whoami` | Who you're authenticated as, plus the credit cost table | 0 |\n\nCosts are set from measured median LLM/tool spend per agent across real\nresearch runs, including the identity (and, where relevant, product)\nresolution every standalone call re-runs from scratch — `competitive` costs\nwhat it does because profiling each competitor genuinely re-runs\nidentity/product/people/etc. research against that competitor.\n\n`market` is the only tool that works with no company at all — pass just\n`industry` (optionally `geography`) for an industry-wide view.\n\n`deck` takes `deck_text` (the deck's extracted text) instead of a company.\n\nEvery other tool takes:\n\n- `company_name` — the company's name\n- `root_url` — the company's website\n\nAt least one of `company_name`/`root_url` is required.\n\nTool output is JSON (not prose) — the point of calling one of these is the\nstructured research data, not a chat reply.\n\n## Getting a token\n\n1. Sign in at [doableclaw.com](https://doableclaw.com), then go to\n   **Account → API Access** ([doableclaw.com/account/api-keys](https://doableclaw.com/account/api-keys)).\n2. Enter a label (e.g. \"my laptop\") and click **Create Key**. The plaintext\n   token is shown once — copy it immediately, it can't be retrieved again. It\n   looks like `dcresearch_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx`.\n3. The same page shows your `mcp_research_api` credit balance and a **Buy\n   credits** button if you're out.\n\nRevoke a key any time from the same page — an MCP client using a revoked key\nstarts getting `401`s immediately.\n\nPrefer the API directly (e.g. for scripting key rotation)? The page is a thin\nclient over:\n\n```bash\n# List your keys\ncurl -s https://ikshan-be-prod-6gbup6suoq-el.a.run.app/api/v1/account/mcp/research-v4/tokens \\\n  -H \"Authorization: Bearer <your doableclaw.com session token>\"\n\n# Create one\ncurl -s -X POST https://ikshan-be-prod-6gbup6suoq-el.a.run.app/api/v1/account/mcp/research-v4/tokens \\\n  -H \"Authorization: Bearer <your doableclaw.com session token>\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"label\": \"my laptop\"}'\n\n# Revoke one\ncurl -s -X DELETE https://ikshan-be-prod-6gbup6suoq-el.a.run.app/api/v1/account/mcp/research-v4/tokens/<id> \\\n  -H \"Authorization: Bearer <your doableclaw.com session token>\"\n```\n\nThe \"session token\" here is your doableclaw.com login JWT, not the\n`dcresearch_...` MCP key itself — these endpoints are how the account page\nmanages MCP keys, not something an MCP client calls.\n\n## Client setup\n\nMost MCP clients speak stdio, not remote HTTP directly — bridge with\n[`mcp-remote`](https://www.npmjs.com/package/mcp-remote):\n\n```json\n{\n  \"mcpServers\": {\n    \"doableclaw-research\": {\n      \"command\": \"npx\",\n      \"args\": [\n        \"-y\", \"mcp-remote\",\n        \"https://ikshan-be-prod-6gbup6suoq-el.a.run.app/mcp/research-v4\",\n        \"--header\", \"Authorization:Bearer ${DOABLECLAW_MCP_TOKEN}\"\n      ]\n    }\n  }\n}\n```\n\nSet `DOABLECLAW_MCP_TOKEN` in your environment, or hardcode the token in place\nof `${DOABLECLAW_MCP_TOKEN}` (less safe — avoid committing it anywhere).\nRestart your client fully after editing its config.\n\n## Credits and pricing\n\nEvery call is metered against your DoableClaw account's credit balance for\nthe `mcp_research_api` capability — the same credits system used for other\npaid features. A call that would exceed your balance is refused before any\nresearch runs (nothing is charged). Check your balance and buy more from\n**Account → API Access** on [doableclaw.com](https://doableclaw.com/account/api-keys).\n\n## Status\n\nv1.0.0 — first public release. `synthesis` (the full-pipeline join step) and\nthe underlying skill-level primitives are intentionally not exposed as\nseparate tools; the 12 agents above are the supported granularity.\n\n## Support\n\nIssues and questions: open a GitHub issue on this repo.\n",
  "bytes": 5784,
  "sha": "5dfd8c5caf39bd1e115c6e8bfa060885c92a575d70f8abac5a188971a153b3a4",
  "repo_slug": "ikshan-ai/doableclaw-mcp",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_ikshan_ai_doableclaw_mcp_0c2118af/readme"
}