DoableClaw Research
DoableClaw Research MCP
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. Backed by doableclaw.com.
Server:
https://ikshan-be-prod-6gbup6suoq-el.a.run.app/mcp/research-v4Transport: Streamable HTTP
Auth:
Authorization: Bearer <token>— see Getting a tokenRegistry entry:
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, so you don't call it yourself unless identity is all you
want. Every call costs credits from your DoableClaw account — see cost below.
Tool | What it researches | Credits |
| Extract and verify claims from a pitch deck's text | 1 |
| Legal entity, licenses/registrations, operating footprint | 2 |
| Market size/segments/regulatory factors — works company-scoped or industry-only | 3 |
| Media coverage, social presence, hiring signals, growth proxy | 3 |
| Market players, share, demand signals, value chain | 3 |
| Tech stack, AI/ML capabilities, infrastructure, patents, trademarks | 4 |
| Products, pricing plans, product gaps | 4 |
| Founders, leadership, headcount trend, key-person risk | 4 |
| Funding history, inferred financial metrics | 5 |
| Reviews, success stories, sentiment, pain points, ICP | 5 |
| Comparable companies in other markets, each profiled via nested research — cost varies a lot with how many analogs get found | 6 |
| Competitors, competitive landscape — the most expensive tool by a wide margin, since profiling each competitor runs a full nested research pass | 18 |
| Who you're authenticated as, plus the credit cost table | 0 |
Costs are set from measured median LLM/tool spend per agent across real
research runs, including the identity (and, where relevant, product)
resolution every standalone call re-runs from scratch — competitive costs
what it does because profiling each competitor genuinely re-runs
identity/product/people/etc. research against that competitor.
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 (the deck's extracted text) instead of a company.
Every other tool takes:
company_name— the company's nameroot_url— the company's website
At least one of company_name/root_url is required.
Tool output is JSON (not prose) — the point of calling one of these is the structured research data, not a chat reply.
Related MCP server: databid
Getting a token
Sign in at doableclaw.com, then go to Account → API Access (doableclaw.com/account/api-keys).
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.The same page shows your
mcp_research_apicredit 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.
Prefer the API directly (e.g. for scripting key rotation)? The page is a thin client over:
# List your keys
curl -s https://ikshan-be-prod-6gbup6suoq-el.a.run.app/api/v1/account/mcp/research-v4/tokens \
-H "Authorization: Bearer <your doableclaw.com session token>"
# Create one
curl -s -X POST https://ikshan-be-prod-6gbup6suoq-el.a.run.app/api/v1/account/mcp/research-v4/tokens \
-H "Authorization: Bearer <your doableclaw.com session token>" \
-H "Content-Type: application/json" \
-d '{"label": "my laptop"}'
# Revoke one
curl -s -X DELETE https://ikshan-be-prod-6gbup6suoq-el.a.run.app/api/v1/account/mcp/research-v4/tokens/<id> \
-H "Authorization: Bearer <your doableclaw.com session token>"The "session token" here is your doableclaw.com login JWT, not the
dcresearch_... MCP key itself — these endpoints are how the account page
manages MCP keys, not something an MCP client calls.
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.
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 on doableclaw.com.
Status
v1.0.0 — first public release. synthesis (the full-pipeline join step) and
the underlying skill-level primitives are intentionally not exposed as
separate tools; the 12 agents above are the supported granularity.
Support
Issues and questions: open a GitHub issue on this repo.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceProvides tools for automated company research, competitor identification, and business model analysis to generate comprehensive business intelligence. It enables users to extract market keywords and synthesize competitive insights via AI-powered research capabilities.
- Alicense-qualityDmaintenanceAgent-native company intelligence. AI agents search and retrieve structured, verified company context (certifications, capabilities, capacity, lead times) for manufacturing & supply chain via 5 MCP tools.MIT
- AlicenseAqualityCmaintenanceWeb intelligence MCP server for AI agents. 7 tools for SERP analysis, competitor research, market trends, content gap analysis, keyword insights, audience discovery, and citation tracking.72AGPL 3.0
- Alicense-qualityCmaintenanceAI-powered multi-source research and crawling platform with MCP integration, enabling web search, crawling, social source aggregation, and structured research workflows.1MIT
Related MCP Connectors
100+ MCP tools for AI agents: content metadata, trade intelligence, business-expertise analysis.
Social media analytics, video analysis, and competitor intel for any MCP-compatible AI agent.
Real SEC, 13F, insider, congress & macro data your AI agent can cite. Hosted MCP, 24 tools.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ikshan-ai/doableclaw-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server