@curless/agentbank-merchant-mcp 0.0.4 → 0.0.5

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
@@ -26,7 +26,6 @@ table fallback for hosts without the card.
26
26
  "command": "/usr/local/bin/npx",
27
27
  "args": ["-y", "@curless/agentbank-merchant-mcp"],
28
28
  "env": {
29
- "AGENTBANK_API_URL": "https://mcp.curless.ai",
30
29
  "AGENTBANK_MERCHANT_TOKEN": "<your-curless-api-key>",
31
30
  "AGENTBANK_MERCHANT_ID": "429488"
32
31
  }
@@ -37,6 +36,8 @@ table fallback for hosts without the card.
37
36
 
38
37
  | env | what |
39
38
  | --- | --- |
40
- | `AGENTBANK_API_URL` | agentbank base URL (default `https://mcp.curless.ai`; set `http://localhost:3000` for local dev) |
41
39
  | `AGENTBANK_MERCHANT_TOKEN` | your Curless API key (issued by Curless at onboarding) |
42
40
  | `AGENTBANK_MERCHANT_ID` | your Curless merchant id, e.g. `429488` |
41
+
42
+ The server talks to `https://mcp.curless.ai` by default — no need to configure it.
43
+ (Local dev only: set `AGENTBANK_API_URL=http://localhost:3000` to point at a local API.)
package/dist/index.js CHANGED
@@ -117,7 +117,7 @@ const card = (markdown, structured) => ({
117
117
  structuredContent: structured,
118
118
  _meta: UI_META,
119
119
  });
120
- const server = new Server({ name: 'agentbank-merchant', version: '0.0.4' }, { capabilities: { tools: {}, resources: {} } });
120
+ const server = new Server({ name: 'agentbank-merchant', version: '0.0.5' }, { capabilities: { tools: {}, resources: {} } });
121
121
  server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: TOOLS }));
122
122
  // The card resource (MCP Apps): advertise + serve the self-contained HTML.
123
123
  server.setRequestHandler(ListResourcesRequestSchema, async () => ({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@curless/agentbank-merchant-mcp",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "Merchant-side MCP server for agentbank — read your orders + live Curless wallet balance from Claude, authenticated by your Curless API key via env (no OAuth).",
5
5
  "license": "MIT",
6
6
  "type": "module",