From a8bd8ab60a62b49cb691533d7eb95b887a355808 Mon Sep 17 00:00:00 2001 From: Simen Svale Date: Tue, 30 Dec 2025 04:29:19 +0100 Subject: [PATCH] Bump version to 1.0.1, add startup version log MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update package.json version from 0.1.0 to 1.0.1 - Update MCP server version to 1.0.1 - Log version to stderr on startup for debugging 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- package.json | 2 +- src/index.ts | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index eea84cc..589d279 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vice-mcp", - "version": "0.1.0", + "version": "1.0.1", "description": "MCP server for autonomous C64 debugging via VICE emulator", "type": "module", "main": "dist/index.js", diff --git a/src/index.ts b/src/index.ts index b28f26b..7ce9352 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,11 +16,16 @@ import { getLabelForAddress, } from "./utils/index.js"; +const VERSION = "1.0.1"; + const server = new McpServer({ name: "vice-mcp", - version: "0.1.0", + version: VERSION, }); +// Log version to stderr for debugging (MCP uses stdout for protocol) +console.error(`[vice-mcp] Starting v${VERSION}`); + const client = getViceClient(); // Helper to format tool responses with _meta context