@kanbodev/mcp 1.0.4 → 1.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +5 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -29322,8 +29322,10 @@ class ToolRegistryImpl {
29322
29322
  }
29323
29323
  }
29324
29324
  var toolRegistry = new ToolRegistryImpl;
29325
- var toolLogger = logger.withCategory(LogCategory.STARTUP);
29326
- toolLogger.info({ toolCount: toolRegistry.tools.length }, "Tools registered");
29325
+ function logToolRegistration() {
29326
+ const toolLogger = logger.withCategory(LogCategory.STARTUP);
29327
+ toolLogger.info({ toolCount: toolRegistry.tools.length }, "Tools registered");
29328
+ }
29327
29329
 
29328
29330
  // src/server.ts
29329
29331
  var serverLogger = logger.withCategory(LogCategory.SYSTEM);
@@ -29400,6 +29402,7 @@ function createMCPServer() {
29400
29402
  return server;
29401
29403
  }
29402
29404
  async function startStdioServer() {
29405
+ logToolRegistration();
29403
29406
  serverLogger.info("Starting in stdio mode");
29404
29407
  if (!CONFIG.KANBO_API_KEY) {
29405
29408
  serverLogger.fatal("KANBO_API_KEY environment variable is required");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanbodev/mcp",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "MCP (Model Context Protocol) server for Kanbo - AI-native project management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",