diff --git a/package.json b/package.json index d2ab30b..5bddd70 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,7 @@ }, "dependencies": { "@alcyone-labs/zod-to-json-schema": "4.0.10", - "@iterable/api": "0.5.2", + "@iterable/api": "0.6.0", "@modelcontextprotocol/sdk": "1.18.1", "@primno/dpapi": "2.0.1", "@types/json-schema": "7.0.15", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 52813fc..1e536bc 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -12,8 +12,8 @@ importers: specifier: 4.0.10 version: 4.0.10(zod@4.1.11) '@iterable/api': - specifier: 0.5.2 - version: 0.5.2(typescript@5.9.3) + specifier: 0.6.0 + version: 0.6.0(typescript@5.9.3) '@modelcontextprotocol/sdk': specifier: 1.18.1 version: 1.18.1 @@ -654,8 +654,8 @@ packages: resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==} engines: {node: '>=8'} - '@iterable/api@0.5.2': - resolution: {integrity: sha512-qzDD7aJPp95toFG9/iXutnoNQtkW0cTH22coEhmLKVj2apEoZ+cSBlgTf/EkRYAWrdnvwEkKe5HVTRp2aNXYtg==} + '@iterable/api@0.6.0': + resolution: {integrity: sha512-rvDi8zOAzU62AhgIS9hCQtnwz4WGVO49nkKw687P2YDikmg7JXhYSx8XRyjwdFVsgeM1FHF1NCrqIkdNRJMmWQ==} engines: {node: '>=18.0.0'} '@jest/console@30.2.0': @@ -3226,7 +3226,7 @@ snapshots: '@istanbuljs/schema@0.1.3': {} - '@iterable/api@0.5.2(typescript@5.9.3)': + '@iterable/api@0.6.0(typescript@5.9.3)': dependencies: '@t3-oss/env-core': 0.13.8(typescript@5.9.3)(zod@4.1.11) axios: 1.13.2 diff --git a/src/utils/command-info.ts b/src/utils/command-info.ts index 5a2f359..880c195 100644 --- a/src/utils/command-info.ts +++ b/src/utils/command-info.ts @@ -23,7 +23,10 @@ export const COMMAND_NAME = isNpx export const KEYS_COMMAND_TABLE: Array<[string, string]> = [ [`${COMMAND_NAME} keys list`, "View all stored API keys"], [`${COMMAND_NAME} keys add`, "Add a new API key"], - [`${COMMAND_NAME} keys update `, "Update an existing key (use --advanced to modify permissions)"], + [ + `${COMMAND_NAME} keys update `, + "Update an existing key (use --advanced to modify permissions)", + ], [`${COMMAND_NAME} keys activate `, "Switch to a different key"], [`${COMMAND_NAME} keys delete `, "Remove a key by ID or name"], ]; diff --git a/tests/integration/mcp-protocol.test.ts b/tests/integration/mcp-protocol.test.ts index 2ad2411..9548715 100644 --- a/tests/integration/mcp-protocol.test.ts +++ b/tests/integration/mcp-protocol.test.ts @@ -630,7 +630,7 @@ describe("MCP Protocol Integration Tests", () => { jsonrpc: "2.0", id: 103, method: "tools/call", - params: { name: "get_templates", arguments: { limit: 1 } }, + params: { name: "get_templates", arguments: { pageSize: 1 } }, }, ];