harmony-mcp 1.0.0 → 1.0.2
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/README.md +2 -2
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,7 +110,7 @@ harmony-mcp serve # Start MCP server
|
|
|
110
110
|
You can also call the Harmony API directly from any HTTP client:
|
|
111
111
|
|
|
112
112
|
```bash
|
|
113
|
-
curl -X GET "https://
|
|
113
|
+
curl -X GET "https://gethmy.com/api/workspaces" \
|
|
114
114
|
-H "X-API-Key: hmy_your_key_here"
|
|
115
115
|
```
|
|
116
116
|
|
|
@@ -146,7 +146,7 @@ Your configuration is stored in `~/.harmony-mcp/config.json`:
|
|
|
146
146
|
```json
|
|
147
147
|
{
|
|
148
148
|
"apiKey": "hmy_...",
|
|
149
|
-
"apiUrl": "https://
|
|
149
|
+
"apiUrl": "https://gethmy.com/api",
|
|
150
150
|
"activeWorkspaceId": null,
|
|
151
151
|
"activeProjectId": null
|
|
152
152
|
}
|
package/dist/cli.js
CHANGED
|
@@ -24853,7 +24853,7 @@ var NEVER2 = INVALID;
|
|
|
24853
24853
|
import { homedir } from "node:os";
|
|
24854
24854
|
import { join } from "node:path";
|
|
24855
24855
|
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
24856
|
-
var DEFAULT_API_URL = "https://
|
|
24856
|
+
var DEFAULT_API_URL = "https://gethmy.com/api";
|
|
24857
24857
|
function getConfigDir() {
|
|
24858
24858
|
return join(homedir(), ".harmony-mcp");
|
|
24859
24859
|
}
|
package/dist/index.js
CHANGED
|
@@ -22995,7 +22995,7 @@ var NEVER2 = INVALID;
|
|
|
22995
22995
|
import { homedir } from "node:os";
|
|
22996
22996
|
import { join } from "node:path";
|
|
22997
22997
|
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "node:fs";
|
|
22998
|
-
var DEFAULT_API_URL = "https://
|
|
22998
|
+
var DEFAULT_API_URL = "https://gethmy.com/api";
|
|
22999
22999
|
function getConfigDir() {
|
|
23000
23000
|
return join(homedir(), ".harmony-mcp");
|
|
23001
23001
|
}
|