Bump version to 1.0.1, add startup version log
- 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 <noreply@anthropic.com>
This commit is contained in:
parent
69e05806e1
commit
a8bd8ab60a
2 changed files with 7 additions and 2 deletions
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue