harmony-mcp 1.0.1 → 1.0.3

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.
package/dist/cli.js CHANGED
@@ -3861,7 +3861,7 @@ var require_fast_deep_equal = __commonJS((exports, module) => {
3861
3861
  };
3862
3862
  });
3863
3863
 
3864
- // ../../node_modules/@modelcontextprotocol/sdk/node_modules/json-schema-traverse/index.js
3864
+ // ../../node_modules/@modelcontextprotocol/sdk/node_modules/ajv/node_modules/json-schema-traverse/index.js
3865
3865
  var require_json_schema_traverse = __commonJS((exports, module) => {
3866
3866
  var traverse = module.exports = function(schema, opts, cb) {
3867
3867
  if (typeof opts == "function") {
@@ -10174,7 +10174,7 @@ var require_subschema2 = __commonJS((exports) => {
10174
10174
  exports.extendSubschemaMode = extendSubschemaMode;
10175
10175
  });
10176
10176
 
10177
- // ../../node_modules/ajv-formats/node_modules/json-schema-traverse/index.js
10177
+ // ../../node_modules/ajv-formats/node_modules/ajv/node_modules/json-schema-traverse/index.js
10178
10178
  var require_json_schema_traverse2 = __commonJS((exports, module) => {
10179
10179
  var traverse = module.exports = function(schema, opts, cb) {
10180
10180
  if (typeof opts == "function") {
@@ -24936,7 +24936,7 @@ class HarmonyApiClient {
24936
24936
  this.apiUrl = getApiUrl();
24937
24937
  }
24938
24938
  async request(method, path, body) {
24939
- const url = `${this.apiUrl}${path}`;
24939
+ const url = `${this.apiUrl}/v1${path}`;
24940
24940
  const response = await fetch(url, {
24941
24941
  method,
24942
24942
  headers: {
package/dist/index.js CHANGED
@@ -2022,7 +2022,7 @@ var require_fast_deep_equal = __commonJS((exports, module) => {
2022
2022
  };
2023
2023
  });
2024
2024
 
2025
- // ../../node_modules/@modelcontextprotocol/sdk/node_modules/json-schema-traverse/index.js
2025
+ // ../../node_modules/@modelcontextprotocol/sdk/node_modules/ajv/node_modules/json-schema-traverse/index.js
2026
2026
  var require_json_schema_traverse = __commonJS((exports, module) => {
2027
2027
  var traverse = module.exports = function(schema, opts, cb) {
2028
2028
  if (typeof opts == "function") {
@@ -8335,7 +8335,7 @@ var require_subschema2 = __commonJS((exports) => {
8335
8335
  exports.extendSubschemaMode = extendSubschemaMode;
8336
8336
  });
8337
8337
 
8338
- // ../../node_modules/ajv-formats/node_modules/json-schema-traverse/index.js
8338
+ // ../../node_modules/ajv-formats/node_modules/ajv/node_modules/json-schema-traverse/index.js
8339
8339
  var require_json_schema_traverse2 = __commonJS((exports, module) => {
8340
8340
  var traverse = module.exports = function(schema, opts, cb) {
8341
8341
  if (typeof opts == "function") {
@@ -23078,7 +23078,7 @@ class HarmonyApiClient {
23078
23078
  this.apiUrl = getApiUrl();
23079
23079
  }
23080
23080
  async request(method, path, body) {
23081
- const url = `${this.apiUrl}${path}`;
23081
+ const url = `${this.apiUrl}/v1${path}`;
23082
23082
  const response = await fetch(url, {
23083
23083
  method,
23084
23084
  headers: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "harmony-mcp",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "MCP server for Harmony Kanban board - enables Claude Code to manage your boards",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",