MCP server for discovering, invoking, and cryptographically verifying paid AI agents with 14 specialized tools.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent โ or use 1-click editor setup below.
๐ก Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Inspect callable tools, capabilities, and parameters exposed to AI agents by Forcedream MCP.
forcedream_verify_proofIndependently verify that a ForceDream agent proof is authentic and untampered, using public-key cryptography. Provide a task_id (proof is fetched from the public endpoint) or a full proof object. Verification runs locally โ ForceDream is never asked whether the proof is valid; the Ed25519 math decides. No account or key needed.
forcedream_search_agentsDiscover ForceDream agents and their honest, system-derived metrics (proof_count, success_rate). Optionally filter by capability (e.g. "research:citation") or free-text query. No key needed. Every agent listed has real cryptographic proofs you can verify with forcedream_verify_proof.
forcedream_invoke_agentInvoke a ForceDream agent to do real work. SPENDS your balance โ requires FD_API_KEY in the server env. Returns the output, what you were charged, and a proof_id you can verify with forcedream_verify_proof. Handles honest declines (charged 0) and insufficient balance gracefully. Invokes once; never double-charges. Use this for any agent WITHOUT a dedicated tool. For security-scan-v1, data-extract-v1, or lead-score-v1 specifically, prefer forcedream_security_scan, forcedream_extract_data, or forcedream_score_lead instead -- same underlying agents, simpler input shape.
forcedream_security_scanReal security review for code: OWASP Top 10, injection, secrets, and dependency risks. Cross-references imported dependencies against OSV.dev for real CVEs, and scans for hardcoded secrets via GitGuardian's real-time detection (400+ types). SPENDS your balance โ requires FD_API_KEY. Returns severity-graded findings, a risk score, what you were charged, and a proof_id.
forcedream_extract_dataStructured JSON extraction from unstructured text -- grounded in real, live verification, not just pattern-matching. Pulls requested fields, nulls anything missing, never guesses. Cross-references detected proper-noun entities (companies, people, places) against Wikidata to confirm which extracted values are independently verified vs. unconfirmed. SPENDS your balance โ requires FD_API_KEY. Returns the extracted rows, what you were charged, and a proof_id.
forcedream_score_leadScore sales leads hot/warm/cold with weighted signals and a recommended next action โ grounded in real, live verification. Cross-references detected companies, domains, and locations against 8 real sources: Wikidata, UK Companies House, EU VIES VAT validation, postcodes.io, Google PageSpeed Insights, OpenStreetMap Nominatim, DNS/MX records, and live HTTP checks. Global by design โ 5 sources work for any lead worldwide; 3 regional ones (UK/EU) apply only when genuinely detected. SPENDS your balance โ requires FD_API_KEY.
ๆฅๆฌ่ช็ใฏ README.ja.md ใใ่ฆงใใ ใใใ
An MCP server for ForceDream โ a paid, verifiable agent marketplace reachable over MCP. Discover agents, invoke them to do real work, and verify the result cryptographically in your own process: every successful call is billed and split with the agent's developer, and every result is Ed25519-signed and independently verifiable.
Listed on the official MCP Registry as io.github.forcedreamai/mcp-server.
| Local (npm) | Remote (hosted) | |
|---|---|---|
| Transport | stdio, runs on your machine | Streamable HTTP, hosted by ForceDream |
| Setup | npx -y @forcedream/mcp-server | Point your client at https://api.forcedream.ai/v1/mcp |
| Auth for invoking | FD_API_KEY env var | OAuth 2.1 + PKCE (standard MCP auth flow) |
| Tools available | All 17 real tools (same set as remote) | All 17 real tools (same set as local) |
| Best for | Claude Desktop, local dev | Any client with native remote-MCP + OAuth support |
Both talk to the same real ForceDream API and the same real settlement system. Pick whichever fits your client.
Discovery, pricing, reliability, provider health and proof verification need no account. Tools that spend your balance need authentication.
5 tools need no account -- discovery and verification are always free. 12 tools spend your balance -- generation, extraction, scoring, sentiment analysis, and specialist checks.
| Tool | Auth | What it does |
|---|---|---|
forcedream_search_agents | none | Discover ForceDream agents, their real capabilities, and honest, system-derived metrics. |
forcedream_verify_proof | none | Independently verify a ForceDream proof by task ID. Checked locally against the published public key. |
forcedream_search_costs | none | Real price_per_call_pence for every registered agent -- useful for budget-aware agent selection before invoking. |
forcedream_search_providers | none | Real, live inference-provider health -- the same intelligence the platform's own adaptive routing uses internally. |
forcedream_search_reliability | none | Real, system-measured reliability per agent: success_rate, avg_latency_ms, sample_size. |
forcedream_invoke_agent | key/OAuth | Invoke any registered agent to do real work. Spends your balance. Honest declines and failed charges cost nothing. |
forcedream_extract_data | key/OAuth | Extract structured data from unstructured text, with entities verified against Wikidata. |
forcedream_score_lead | key/OAuth | Score a business lead using real, multi-source enrichment (Companies House, Wikidata, DNS, PageSpeed, and more). |
forcedream_generate_code | key/OAuth | Generate code verified by 6 independent modules -- syntax, dependencies, security, OpenSSF supply-chain checks, complexity, and tests. Never a fabricated pass. |
forcedream_generate_sentiment | key/OAuth | Real, 14-source sentiment analysis -- VADER, AFINN, HuggingFace transformer, Google Perspective toxicity, Wikidata/OpenStreetMap entity verification, GDELT/Hacker News alignment, grammar, readability -- combined into a deterministic overall sentiment, urgency, and business impact score. |
forcedream_security_scan | key/OAuth | Real security scanning using OSV.dev CVE lookups and GitGuardian secret detection. |
forcedream_check_fraud | key/OAuth | Real-time fraud risk scoring using IP reputation and behavioural signals. |
forcedream_generate_embedding | key/OAuth | Real 1024-dim text embeddings via Voyage voyage-3.5. |
forcedream_market_quote | key/OAuth | Live stock quotes via Alpha Vantage, cached, WORM-sealed. |
forcedream_summarize_document | OAuth | Summary, executive summary, bullet points and action items from text, HTML, Markdown, JSON, XML or a URL. Never adds facts not in the source. |
forcedream_extract_entities | OAuth | Every email address, company name and date stated verbatim in a document or URL. Never fabricates an entity that is not present. |
forcedream_extract_action_items | OAuth | Concrete next steps stated or implied in a document or URL. Empty array if there are none. |
Sign up at forcedream.com. You'll receive a billing key (fd_live_โฆ) and a small trial balance, so you can invoke an agent immediately โ no payment required to try it.
Edit your claude_desktop_config.json:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonRestart Claude Desktop. You should see the ForceDream tools available.
Omit
FD_API_KEYto run discovery + verification only (no spending). Add it to enableforcedream_invoke_agent.
Open Cursor Settings -> MCP -> Add new MCP Server, or edit your MCP config directly:
In Windsurf, go to Settings -> Cascade -> MCP Servers -> Add Server, and use the same config block as above.
In a new chat:
"Search the ForceDream agents, then invoke data-extract-v1 to pull the year from 'founded in 1998', then verify the proof it returns."
You'll watch discovery โ invocation โ trustless verification, end to end.
For MCP clients with native remote-server support, add:
Your client will handle the OAuth 2.1 + PKCE flow automatically the first time you invoke a billed tool.
Different workflows for different starting points -- pick the one that matches where you are.
npx -y @forcedream/mcp-server with no FD_API_KEY set -- discovery and verification work immediately, no signup.forcedream_search_agents to see real, live agents.forcedream_security_scan or forcedream_generate_code directly by name -- both are dedicated, named tools.A2AAgent at the remote endpoint (see Quick start, remote/OAuth above) -- no separate client library needed.forcedream_verify_proof on every task_id before trusting the result downstream.forcedream_search_reliability and forcedream_search_costs for budget- and reliability-aware agent selection before you commit to one in production.security-scan-v1 into a CI/CD gate as a real, proof-backed pre-merge check -- see Use case 1 below.Real agents you can try, see forcedream_search_agents for the full current list.
This repository is a thin client. It calls the public API and speaks MCP -- it does not contain ForceDream's agent orchestration, routing, or settlement logic, which remain part of the private platform.
What visitors get, not how it works internally:
Unlike a documentation-lookup or local-automation MCP server, ForceDream is a paid, verifiable agent marketplace reachable over MCP:
Factual signals from GitHub, npm, and our automated checks โ not a rating.
No reviews yet โ be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/forcedreamai-forcedream-mcp)<a href="https://allmcps.com/mcp/forcedreamai-forcedream-mcp"><img src="https://allmcps.com/api/badge/forcedreamai-forcedream-mcp?style=directory" alt="Forcedream MCP on AllMCPs" /></a>