@justhandledlabs/agent-client 0.2.1 → 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.
package/README.md CHANGED
@@ -52,6 +52,8 @@ npx.cmd --package @justhandledlabs/agent-client justhandled-agent call filename-
52
52
 
53
53
  The MCP server exposes a free catalog tool plus one paid tool per gateway utility. Missing wallet configuration produces an error instead of a payment attempt.
54
54
 
55
+ The package declares the official MCP Registry identity `io.github.justhandledlabs/agent-gateway`. Registry identity is discovery metadata only: installing or listing the server does not spend funds, and paid execution still requires a dedicated wallet plus the client's exact-term checks.
56
+
55
57
  ## Security model
56
58
 
57
59
  - Price, chain, asset, receiver, and gateway origin are pinned in code.
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.2.1" }, { capabilities: { tools: {} } });
6
+ const server = new Server({ name: "justhandled-agent-gateway", version: "0.3.0" }, { capabilities: { tools: {} } });
7
7
  server.setRequestHandler(ListToolsRequestSchema, async () => {
8
8
  const catalog = await getCatalog();
9
9
  return {
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@justhandledlabs/agent-client",
3
- "version": "0.2.1",
3
+ "version": "0.3.0",
4
4
  "description": "Guarded CLI and MCP client for JustHandled's x402 utility gateway",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
- "mcpName": "com.justhandledlabs/agent-gateway",
7
+ "mcpName": "io.github.justhandledlabs/agent-gateway",
8
8
  "repository": {
9
9
  "type": "git",
10
10
  "url": "git+https://github.com/justhandledlabs/justhandled-agent-client.git"
@@ -16,10 +16,14 @@
16
16
  "keywords": [
17
17
  "ai-agents",
18
18
  "mcp",
19
+ "mcp-server",
19
20
  "x402",
20
21
  "base",
21
22
  "usdc",
22
- "preflight"
23
+ "preflight",
24
+ "agent-evaluation",
25
+ "agent-observability",
26
+ "evidence"
23
27
  ],
24
28
  "files": [
25
29
  "dist",
package/server.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
- "name": "com.justhandledlabs/agent-gateway",
3
+ "name": "io.github.justhandledlabs/agent-gateway",
4
4
  "title": "JustHandled Agent Utility Gateway",
5
5
  "description": "Twenty deterministic preflights and evidence products with guarded per-product USDC x402 execution.",
6
- "version": "0.2.1",
6
+ "version": "0.3.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.2.1",
15
+ "version": "0.3.0",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  },