diff --git a/package-lock.json b/package-lock.json index 6235c23..764e405 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@pymodel/claude-agy-mcp", - "version": "1.0.2", + "version": "1.0.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@pymodel/claude-agy-mcp", - "version": "1.0.2", + "version": "1.0.3", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.12.0", diff --git a/package.json b/package.json index 19c3b40..ba82a83 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@pymodel/claude-agy-mcp", - "version": "1.0.2", + "version": "1.0.3", "description": "MCP bridge that lets Claude Code delegate heavy tasks to the Antigravity CLI (agy) — purpose-built tools, model routing with fallback, and multi-turn session continuity.", "mcpName": "io.github.PyModel/claude-agy-mcp", "type": "module", diff --git a/server.json b/server.json index 2f63b35..a9be23c 100644 --- a/server.json +++ b/server.json @@ -6,12 +6,12 @@ "url": "https://github.com/PyModel/claude-agy-mcp", "source": "github" }, - "version": "1.0.2", + "version": "1.0.3", "packages": [ { "registryType": "npm", "identifier": "@pymodel/claude-agy-mcp", - "version": "1.0.2", + "version": "1.0.3", "transport": { "type": "stdio" }, diff --git a/src/server.ts b/src/server.ts index 8d4ae35..67cce23 100644 --- a/src/server.ts +++ b/src/server.ts @@ -12,7 +12,7 @@ import { CooldownRegistry, QuotaError } from "./quota.js"; import { TOOLS, type ToolDef } from "./tools.js"; /** Keep in sync with package.json — test/server.test.ts fails if they drift. */ -export const VERSION = "1.0.2"; +export const VERSION = "1.0.3"; interface ToolResponse { [key: string]: unknown;