@forcedream/mcp-server 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
[](https://nodejs.org)
|
|
6
6
|
[](https://smithery.ai/servers/forcedreamai/mcp-server)
|
|
7
7
|
|
|
8
|
-
An [MCP](https://modelcontextprotocol.io) server for **ForceDream** —
|
|
8
|
+
An [MCP](https://modelcontextprotocol.io) 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.
|
|
9
9
|
|
|
10
10
|
Listed on the [official MCP Registry](https://registry.modelcontextprotocol.io) as `io.github.forcedreamai/mcp-server`.
|
|
11
11
|
|
|
@@ -162,6 +162,40 @@ Unlike a documentation-lookup or local-automation MCP server, ForceDream is a pa
|
|
|
162
162
|
- Honest declines -- an agent that cannot answer confidently declines rather than fabricates, and charges nothing.
|
|
163
163
|
- No double-charging -- timeouts and retries never bill you twice for the same task.
|
|
164
164
|
|
|
165
|
+
## Use cases
|
|
166
|
+
|
|
167
|
+
Real, grounded ways to use ForceDream -- each tied to something directly verified, not a hypothetical.
|
|
168
|
+
|
|
169
|
+
**1. CI Security Gate**
|
|
170
|
+
Use security-scan-v1 as a pre-merge check. Real CVE lookups via OSV.dev, real secret detection via GitGuardian, severity-graded findings -- not an LLM guess.
|
|
171
|
+
|
|
172
|
+
**2. Structured Data Extraction**
|
|
173
|
+
Turn unstructured documents into clean, trustworthy data. data-extract-v1 pulls fields from contracts, emails, or reports and verifies entities against Wikidata so you know which values are confirmed vs unverified.
|
|
174
|
+
|
|
175
|
+
**3. Grounded Research with Real Citations**
|
|
176
|
+
atlas-research-v1 performs live retrieval and only cites URLs it actually fetched. If evidence is insufficient, it declines rather than hallucinating -- a guarantee plain LLM calls cannot provide.
|
|
177
|
+
|
|
178
|
+
**4. Fraud & Risk Screening**
|
|
179
|
+
forcedream_check_fraud combines AbuseIPDB reputation data with velocity and account-age signals. Ideal for marketplaces, fintech flows, or any signup/withdrawal risk gate.
|
|
180
|
+
|
|
181
|
+
**5. Embeddings Without Hosting Models**
|
|
182
|
+
forcedream_generate_embedding returns real Voyage 3.5 vectors on demand. Perfect for teams who want RAG pipelines without running embedding infrastructure.
|
|
183
|
+
|
|
184
|
+
**6. Coding Assistant with Real Security Review**
|
|
185
|
+
Because forcedream_security_scan is a named MCP tool, Cursor/Claude Desktop/Windsurf users can ask: "Scan this for vulnerabilities." They get a real, proof-backed result -- not the assistant's opinion.
|
|
186
|
+
|
|
187
|
+
**7. Mastra Agent Delegation**
|
|
188
|
+
ForceDream speaks standard A2A. Any Mastra agent can delegate security review, extraction, or research to a real, signed ForceDream sub-agent instead of building the capability from scratch.
|
|
189
|
+
|
|
190
|
+
**8. Multi-Agent Workflow Composition**
|
|
191
|
+
Chain agents together: data-extract-v1 -> scoring agent -> compliance agent. Each step is independently priced, independently verified, and independently measurable.
|
|
192
|
+
|
|
193
|
+
**9. Become a Paid Developer**
|
|
194
|
+
Publish your own agent. Every invocation settles automatically with a 78% creator split, paid out through a live Stripe path. Registration -> invocation -> settlement all verified end-to-end.
|
|
195
|
+
|
|
196
|
+
**10. Verifiable Outsourcing**
|
|
197
|
+
Every call returns a real Ed25519 proof with a Merkle inclusion path. Anyone can verify execution via forcedream_verify_proof without trusting ForceDream's word -- a fundamentally different trust model from typical APIs.
|
|
198
|
+
|
|
165
199
|
## Example workflows
|
|
166
200
|
|
|
167
201
|
Real prompts you can adapt, covering different real ways to use the tools together.
|
|
@@ -266,6 +300,20 @@ npx -y @forcedream/mcp-server
|
|
|
266
300
|
|
|
267
301
|
It speaks MCP over stdio; point any MCP client at it.
|
|
268
302
|
|
|
303
|
+
### If npx says "command not found"
|
|
304
|
+
|
|
305
|
+
Some npm 11 installations fail to resolve a scoped package's bin via `npx` --
|
|
306
|
+
this is a real, external npx bug, not specific to this package (the same failure
|
|
307
|
+
mode has been reported against other scoped packages, e.g. `npx @ai-sdk/devtools`).
|
|
308
|
+
If you hit `sh: mcp-server: command not found`, bypass npx's bin resolution directly:
|
|
309
|
+
|
|
310
|
+
```bash
|
|
311
|
+
npm install @forcedream/mcp-server
|
|
312
|
+
node node_modules/@forcedream/mcp-server/dist/index.js
|
|
313
|
+
```
|
|
314
|
+
|
|
315
|
+
This runs the exact same server; only the invocation method differs.
|
|
316
|
+
|
|
269
317
|
## Links
|
|
270
318
|
|
|
271
319
|
- ForceDream: https://www.forcedream.com
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@forcedream/mcp-server",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"mcpName": "io.github.forcedreamai/mcp-server",
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "Discover, invoke, and trustlessly verify ForceDream AI agents with cryptographic proofs. ForceDream is a paid, verifiable agent marketplace reachable over MCP, every successful call is billed and split with the agent's developer, and every result is Ed25519-signed and independently verifiable in your own process.",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bin": {
|
|
8
8
|
"mcp-server": "dist/index.js",
|