skim-mcp 0.1.6 → 0.1.7

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 CHANGED
@@ -107,6 +107,7 @@ That's it. One tool, one input, one shape of output. Designed to drop into any a
107
107
  | `SKIM_WALLET_PRIVATE_KEY` | **yes** | — | Hex private key for the Base wallet that pays for reads. With or without `0x` prefix. Use a dedicated wallet — never your personal one. |
108
108
  | `SKIM_MAX_PRICE_USD` | no | `0.01` | Hard cap on per-call price in USD. The wallet refuses to sign for anything above this. Skim is currently `$0.002`/call, well under the default cap — leave it alone unless tuning. |
109
109
  | `SKIM_API_URL` | no | `https://skim402.com` | Override the API base URL. For self-hosting or local development. |
110
+ | `SKIM_TIMEOUT_MS` | no | `90000` | Hard deadline per call in milliseconds. Aborts stalled requests or payment steps so a single bad call can never hang your agent. Unsettled calls are never charged, so retry is safe. |
110
111
 
111
112
  ---
112
113
 
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env node
2
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skim-mcp",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "mcpName": "io.github.JessieJanie/skim402",
5
5
  "description": "MCP server for Skim — clean web reader for AI agents. Pays $0.002 per call in USDC over x402. No signup, no API keys.",
6
6
  "type": "module",
@@ -17,10 +17,12 @@
17
17
  "@modelcontextprotocol/sdk": "^1.0.0",
18
18
  "viem": "^2.21.0",
19
19
  "x402-fetch": "^0.6.0",
20
- "zod": "^3.25.76"
20
+ "zod": "3.25.76"
21
21
  },
22
22
  "devDependencies": {
23
+ "@anthropic-ai/mcpb": "^2.0.0",
23
24
  "@types/node": "^25.3.3",
25
+ "esbuild": "^0.27.0",
24
26
  "tsx": "^4.21.0",
25
27
  "typescript": "^5.9.0"
26
28
  },
@@ -52,8 +54,9 @@
52
54
  },
53
55
  "scripts": {
54
56
  "build": "tsc -p tsconfig.build.json && node -e \"require('fs').chmodSync('dist/index.js', 0o755)\"",
55
- "typecheck": "tsc --noEmit",
57
+ "typecheck": "tsc --build tsconfig.json",
56
58
  "dev": "tsx src/index.ts",
59
+ "mcpb": "node mcpb-build.mjs",
57
60
  "audit:buyers": "node buyer-audit.mjs"
58
61
  }
59
62
  }