agentpay-mcp 4.1.7 → 4.1.8

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
@@ -3,7 +3,7 @@
3
3
  [![npm version](https://img.shields.io/npm/v/agentpay-mcp.svg)](https://www.npmjs.com/package/agentpay-mcp)
4
4
  [![Glama MCP Server](https://img.shields.io/badge/glama.ai-MCP%20server-1ee495?logo=githubsponsors&logoColor=1ee495&labelColor=0a0a0a)](https://glama.ai/mcp/servers/up2itnow0822/claw-pay-mcp)
5
5
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
6
- [![Tests](https://img.shields.io/badge/tests-194%20passing-brightgreen.svg)](tests/)
6
+ [![Tests](https://img.shields.io/badge/tests-195%20passing-brightgreen.svg)](tests/)
7
7
  [![Patent Pending](https://img.shields.io/badge/patent-pending-orange.svg)](https://uspto.gov)
8
8
 
9
9
  **Compatible with x402 V1/V2 + Stripe MPP — protocol-agnostic spend controls.**
@@ -226,7 +226,7 @@ A proxy can help with billing and account aggregation. It does not automatically
226
226
 
227
227
  **What proof can a directory or buyer check today?**
228
228
 
229
- - npm: `agentpay-mcp@4.1.6` or newer
229
+ - npm: `agentpay-mcp@4.1.8` or newer
230
230
  - Glama: https://glama.ai/mcp/servers/up2itnow0822/claw-pay-mcp
231
231
  - Catalog metadata: `glama.json` and `smithery.yaml`
232
232
  - Install paths: `npx` and Docker
package/dist/index.js CHANGED
@@ -42,7 +42,7 @@ const otel_budget_js_1 = require("./tools/otel-budget.js");
42
42
  // ─── Server configuration ──────────────────────────────────────────────────
43
43
  const SERVER_INFO = {
44
44
  name: 'agentpay-mcp',
45
- version: '4.1.6',
45
+ version: '4.1.8',
46
46
  };
47
47
  const SERVER_CAPABILITIES = {
48
48
  tools: {},
@@ -261,7 +261,7 @@ async function main() {
261
261
  });
262
262
  await server.connect(transport);
263
263
  // Log to stderr (not stdout — stdout is reserved for MCP protocol)
264
- process.stderr.write(`AgentPay MCP v4.1.6 started. ` +
264
+ process.stderr.write(`AgentPay MCP v4.1.8 started. ` +
265
265
  `Wallet: ${process.env['AGENT_WALLET_ADDRESS'] ?? '(not configured)'} | ` +
266
266
  `Chain: ${process.env['CHAIN_ID'] ?? '8453 (Base Mainnet)'} | ` +
267
267
  `Session TTL: ${process.env['SESSION_TTL_SECONDS'] ?? '3600'}s\n`);
@@ -40,7 +40,7 @@ That is different from routing every paid call through a proxy that owns the dow
40
40
  AgentPay MCP currently has public discovery and package proof:
41
41
 
42
42
  - Glama listing: https://glama.ai/mcp/servers/up2itnow0822/claw-pay-mcp
43
- - npm package: `agentpay-mcp@4.1.6` or newer
43
+ - npm package: `agentpay-mcp@4.1.8` or newer
44
44
  - Packaged catalog metadata: `glama.json` and `smithery.yaml`
45
45
  - Packaged install paths: `npx` and Docker
46
46
  - Introspection proof: 27 MCP tools, including `x402_pay`, `check_budget`, `set_spend_policy`, and `otel_evaluate_spend`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentpay-mcp",
3
- "version": "4.1.7",
3
+ "version": "4.1.8",
4
4
  "mcpName": "io.github.up2itnow0822/agentpay",
5
5
  "description": "AgentPay MCP Server - Non-custodial x402 payment layer for AI agents. Multi-chain wallets, spending limits, and machine-to-machine payments. Patent Pending.",
6
6
  "main": "dist/index.js",