Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions server.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down
2 changes: 1 addition & 1 deletion src/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down