diff --git a/plugins/orchestrator/dist/server.js b/plugins/orchestrator/dist/server.js index 6b6141f..f59fdc9 100644 --- a/plugins/orchestrator/dist/server.js +++ b/plugins/orchestrator/dist/server.js @@ -24819,7 +24819,7 @@ server.tool("system_status", "Check the health of the orchestrator system: embed const lines = []; lines.push("## System Status"); lines.push(""); - lines.push(`- **Version**: orchestrator MCP server **0.30.28** (pid ${process.pid})`); + lines.push(`- **Version**: orchestrator MCP server **${PLUGIN_VERSION}** (pid ${process.pid})`); if (agentChannel) { lines.push(`- **Agent-channel**: ACTIVE - filewatcher running`); } else { diff --git a/plugins/orchestrator/mcp/server.ts b/plugins/orchestrator/mcp/server.ts index 85eed16..90b8dd7 100644 --- a/plugins/orchestrator/mcp/server.ts +++ b/plugins/orchestrator/mcp/server.ts @@ -652,7 +652,7 @@ server.tool( const lines: string[] = []; lines.push("## System Status"); lines.push(""); - lines.push(`- **Version**: orchestrator MCP server **0.30.28** (pid ${process.pid})`); + lines.push(`- **Version**: orchestrator MCP server **${PLUGIN_VERSION}** (pid ${process.pid})`); if (agentChannel) { lines.push(`- **Agent-channel**: ACTIVE - filewatcher running`); } else {