@kanbodev/mcp 1.0.3 → 1.0.4

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 -5
  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) {
@@ -43850,8 +43850,8 @@ function showHelp() {
43850
43850
 
43851
43851
  Environment Variables:
43852
43852
  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)
43853
+ KANBO_API_URL API URL (default: https://api.kanbo.dev)
43854
+ KANBO_WEB_URL Web app URL for login (default: https://kanbo.dev)
43855
43855
  TRANSPORT Server transport: stdio or http (default: stdio)
43856
43856
  PORT HTTP server port (default: 8081)
43857
43857
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kanbodev/mcp",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "MCP (Model Context Protocol) server for Kanbo - AI-native project management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",