@crediolabs/policy-builder-mcp 1.1.0 → 1.1.1

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.
@@ -26,7 +26,7 @@ export function createMcpServer() {
26
26
  // Kept in step with package.json by `server-version.test.ts`. It was
27
27
  // hardcoded once already and reported 0.0.0 to every client; a literal is
28
28
  // fine, a literal nothing checks is not.
29
- { name: 'policy-builder-mcp', version: '1.1.0' }, { capabilities: { tools: {} } });
29
+ { name: 'policy-builder-mcp', version: '1.1.1' }, { capabilities: { tools: {} } });
30
30
  registerTools(server);
31
31
  return server;
32
32
  }
@@ -30,7 +30,7 @@ function createMcpServer() {
30
30
  // Kept in step with package.json by `server-version.test.ts`. It was
31
31
  // hardcoded once already and reported 0.0.0 to every client; a literal is
32
32
  // fine, a literal nothing checks is not.
33
- { name: 'policy-builder-mcp', version: '1.1.0' }, { capabilities: { tools: {} } });
33
+ { name: 'policy-builder-mcp', version: '1.1.1' }, { capabilities: { tools: {} } });
34
34
  registerTools(server);
35
35
  return server;
36
36
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crediolabs/policy-builder-mcp",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "license": "MIT",
5
5
  "description": "MCP server exposing the OZ policy-synth core (record_transaction + synthesize_policy) over stdio and Streamable HTTP transports.",
6
6
  "type": "module",
@@ -63,7 +63,7 @@
63
63
  "prepack": "bun run build"
64
64
  },
65
65
  "dependencies": {
66
- "@crediolabs/policy-synth": "1.1.0",
66
+ "@crediolabs/policy-synth": "1.1.1",
67
67
  "@modelcontextprotocol/sdk": "1.30.0",
68
68
  "@stellar/stellar-sdk": "14.4.0",
69
69
  "zod": "3.25.76"
package/src/server.ts CHANGED
@@ -51,7 +51,7 @@ export function createMcpServer(): McpServer {
51
51
  // Kept in step with package.json by `server-version.test.ts`. It was
52
52
  // hardcoded once already and reported 0.0.0 to every client; a literal is
53
53
  // fine, a literal nothing checks is not.
54
- { name: 'policy-builder-mcp', version: '1.1.0' },
54
+ { name: 'policy-builder-mcp', version: '1.1.1' },
55
55
  { capabilities: { tools: {} } }
56
56
  )
57
57
  registerTools(server)