agent402-mcp 0.2.2 → 0.3.0

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 (3) hide show
  1. package/README.md +5 -0
  2. package/index.js +1 -1
  3. package/package.json +3 -3
package/README.md CHANGED
@@ -6,6 +6,11 @@ Your agent gets browser rendering, screenshots, PDF text extraction, URL→markd
6
6
 
7
7
  ## Quick start
8
8
 
9
+ **Zero install (hosted connector):** add `https://agent402.tools/mcp` as a remote
10
+ MCP server — e.g. claude.ai → Settings → Connectors → Add custom connector. The
11
+ pure-CPU tools run free there (rate-limited); for the full catalog and no rate
12
+ limit, run this package locally with a wallet:
13
+
9
14
  With a funded wallet (USDC on Base) — every tool available:
10
15
 
11
16
  ```json
package/index.js CHANGED
@@ -23,7 +23,7 @@ import { CallToolRequestSchema, ListToolsRequestSchema } from "@modelcontextprot
23
23
 
24
24
  const BASE = (process.env.AGENT402_URL || "https://agent402.tools").replace(/\/$/, "");
25
25
  const AGENT_KEY = process.env.AGENT_KEY || "";
26
- const VERSION = "0.2.0";
26
+ const VERSION = "0.3.0";
27
27
 
28
28
  // Spend controls — enforced BEFORE a payment is ever signed, so a confused or
29
29
  // runaway model cannot drain the wallet. Unset = unlimited (back-compat).
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agent402-mcp",
3
- "version": "0.2.2",
4
- "mcpName": "io.github.mikeypetrillo/agent402",
3
+ "version": "0.3.0",
4
+ "mcpName": "io.github.MikeyPetrillo/agent402",
5
5
  "author": "Mikey Petrillo (https://github.com/MikeyPetrillo)",
6
6
  "homepage": "https://agent402.tools",
7
7
  "description": "MCP server for Agent402 (agent402.tools) — 1000+ pay-per-call web tools for AI agents. Pays per call in USDC via the x402 protocol, or with compute (proof-of-work) when no wallet is configured.",
@@ -26,7 +26,7 @@
26
26
  "usdc",
27
27
  "tools"
28
28
  ],
29
- "license": "ISC",
29
+ "license": "MIT",
30
30
  "dependencies": {
31
31
  "@modelcontextprotocol/sdk": "^1.12.0",
32
32
  "@x402/core": "^2.14.0",