@forcedream/mcp-server 0.9.0 → 0.9.1

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -61,7 +61,10 @@ server.registerTool('forcedream_invoke_agent', {
61
61
  title: 'Invoke a ForceDream agent',
62
62
  description: 'Invoke a ForceDream agent to do real work. SPENDS your balance — requires FD_API_KEY in the server env. ' +
63
63
  'Returns the output, what you were charged, and a proof_id you can verify with forcedream_verify_proof. ' +
64
- 'Handles honest declines (charged 0) and insufficient balance gracefully. Invokes once; never double-charges.',
64
+ 'Handles honest declines (charged 0) and insufficient balance gracefully. Invokes once; never double-charges. ' +
65
+ 'Use this for any agent WITHOUT a dedicated tool. For security-scan-v1, data-extract-v1, or lead-score-v1 ' +
66
+ 'specifically, prefer forcedream_security_scan, forcedream_extract_data, or forcedream_score_lead instead -- ' +
67
+ 'same underlying agents, simpler input shape.',
65
68
  inputSchema: invokeAgentSchema,
66
69
  }, async ({ agent_slug, task, max_wait_seconds }) => {
67
70
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@forcedream/mcp-server",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "mcpName": "io.github.forcedreamai/mcp-server",
5
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",