@kanbodev/mcp 1.0.3 → 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 +10 -7
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -16365,8 +16365,8 @@ var KANBO_WEB_URL, DEFAULT_API_URL, PORT_RANGE, CLI_VERSION = "1.0.0";
16365
16365
  var init_login = __esm(() => {
16366
16366
  init_callback_server();
16367
16367
  init_config();
16368
- KANBO_WEB_URL = process.env.KANBO_WEB_URL || "http://localhost:3000";
16369
- DEFAULT_API_URL = process.env.KANBO_API_URL || "http://localhost:8080";
16368
+ KANBO_WEB_URL = process.env.KANBO_WEB_URL || "https://kanbo.dev";
16369
+ DEFAULT_API_URL = process.env.KANBO_API_URL || "https://api.kanbo.dev";
16370
16370
  PORT_RANGE = { start: 9876, end: 9899 };
16371
16371
  });
16372
16372
 
@@ -16627,7 +16627,7 @@ function getApiUrl() {
16627
16627
  return process.env.KANBO_API_URL;
16628
16628
  }
16629
16629
  const config = loadConfigFile();
16630
- return config?.apiUrl || "http://localhost:8080";
16630
+ return config?.apiUrl || "https://api.kanbo.dev";
16631
16631
  }
16632
16632
  function getOrgId() {
16633
16633
  if (process.env.KANBO_ORG_ID) {
@@ -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");
@@ -43850,8 +43853,8 @@ function showHelp() {
43850
43853
 
43851
43854
  Environment Variables:
43852
43855
  KANBO_API_KEY Personal Access Token (overrides config file)
43853
- KANBO_API_URL API URL (default: http://localhost:8080)
43854
- KANBO_WEB_URL Web app URL for login (default: http://localhost:3000)
43856
+ KANBO_API_URL API URL (default: https://api.kanbo.dev)
43857
+ KANBO_WEB_URL Web app URL for login (default: https://kanbo.dev)
43855
43858
  TRANSPORT Server transport: stdio or http (default: stdio)
43856
43859
  PORT HTTP server port (default: 8081)
43857
43860
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanbodev/mcp",
3
- "version": "1.0.3",
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",