@justhandledlabs/agent-client 0.10.0 → 0.11.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.
package/dist/mcp.js CHANGED
@@ -3,7 +3,7 @@ import { Server } from "@modelcontextprotocol/sdk/server/index.js";
3
3
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
4
4
  import { CallToolRequestSchema, ListToolsRequestSchema } from "@modelcontextprotocol/sdk/types.js";
5
5
  import { getCatalog, runPaidUtility } from "./client.js";
6
- const server = new Server({ name: "justhandled-agent-gateway", version: "0.10.0" }, { capabilities: { tools: {} } });
6
+ const server = new Server({ name: "justhandled-agent-gateway", version: "0.11.0" }, { capabilities: { tools: {} } });
7
7
  server.setRequestHandler(ListToolsRequestSchema, async () => {
8
8
  const catalog = await getCatalog();
9
9
  return {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justhandledlabs/agent-client",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "Guarded CLI and MCP client for JustHandled's x402 utility gateway",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -55,16 +55,16 @@
55
55
  "prepublishOnly": "node scripts/assert-publish-ready.mjs"
56
56
  },
57
57
  "dependencies": {
58
- "@modelcontextprotocol/sdk": "latest",
59
- "@x402/core": "latest",
60
- "@x402/evm": "latest",
61
- "@x402/fetch": "^2.20.0",
62
- "viem": "^2.55.10"
58
+ "@modelcontextprotocol/sdk": "1.30.0",
59
+ "@x402/core": "2.20.0",
60
+ "@x402/evm": "2.20.0",
61
+ "@x402/fetch": "2.20.0",
62
+ "viem": "2.55.10"
63
63
  },
64
64
  "devDependencies": {
65
- "@types/node": "latest",
66
- "tsx": "latest",
67
- "typescript": "latest"
65
+ "@types/node": "26.1.2",
66
+ "tsx": "4.23.1",
67
+ "typescript": "7.0.2"
68
68
  },
69
69
  "engines": {
70
70
  "node": ">=22"
package/server.json CHANGED
@@ -2,8 +2,8 @@
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
3
  "name": "io.github.justhandledlabs/agent-gateway",
4
4
  "title": "JustHandled Agent Utility Gateway",
5
- "description": "Thirty-two guarded pay-per-call preflights, maintained-data lookups, and evidence products over USDC x402.",
6
- "version": "0.10.0",
5
+ "description": "Thirty-two guarded agent utilities and maintained-data lookups over USDC x402.",
6
+ "version": "0.11.0",
7
7
  "repository": {
8
8
  "url": "https://github.com/justhandledlabs/justhandled-agent-client",
9
9
  "source": "github"
@@ -12,7 +12,7 @@
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@justhandledlabs/agent-client",
15
- "version": "0.10.0",
15
+ "version": "0.11.0",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  },