@codazen/harmonica-mcp 0.1.0
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 +49 -0
- package/dist/index.js +23934 -0
- package/dist/index.js.map +7 -0
- package/package.json +26 -0
package/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# @codazen/harmonica-mcp
|
|
2
|
+
|
|
3
|
+
MCP server for [Harmonica](https://harmonica.io) — connect Claude to your Harmonica projects.
|
|
4
|
+
|
|
5
|
+
## Quick Start
|
|
6
|
+
|
|
7
|
+
Add to your `.mcp.json` (Claude Code) or MCP client config:
|
|
8
|
+
|
|
9
|
+
```json
|
|
10
|
+
{
|
|
11
|
+
"mcpServers": {
|
|
12
|
+
"harmonica": {
|
|
13
|
+
"command": "npx",
|
|
14
|
+
"args": ["-y", "@codazen/harmonica-mcp"],
|
|
15
|
+
"env": {
|
|
16
|
+
"HARMONICA_API_KEY": "hmk_your_api_key_here",
|
|
17
|
+
"HARMONICA_ORG_SLUG": "your-org",
|
|
18
|
+
"HARMONICA_USER_ID": "you@example.com"
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Environment Variables
|
|
26
|
+
|
|
27
|
+
| Variable | Required | Default | Description |
|
|
28
|
+
|----------|----------|---------|-------------|
|
|
29
|
+
| `HARMONICA_API_KEY` | Yes | — | API key (`hmk_...`). Generate at harmonica.io > Admin > API Keys |
|
|
30
|
+
| `HARMONICA_ORG_SLUG` | Yes* | — | Organization slug (e.g. `codazen`) |
|
|
31
|
+
| `HARMONICA_ORG_ID` | Yes* | — | Organization UUID (alternative to slug) |
|
|
32
|
+
| `HARMONICA_USER_ID` | Yes | — | Your email address |
|
|
33
|
+
| `HARMONICA_STAGE` | No | `prod` | `local`, `staging`, or `prod` |
|
|
34
|
+
| `HARMONICA_API_BASE_URL` | No | Auto | Override API URL |
|
|
35
|
+
| `MCP_HTTP_TIMEOUT_MS` | No | `30000` | Request timeout in ms |
|
|
36
|
+
|
|
37
|
+
*One of `HARMONICA_ORG_SLUG` or `HARMONICA_ORG_ID` is required.
|
|
38
|
+
|
|
39
|
+
## What You Can Do
|
|
40
|
+
|
|
41
|
+
Once connected, Claude can:
|
|
42
|
+
|
|
43
|
+
- List and manage projects, Beats, and Revisions
|
|
44
|
+
- Create, update, and query Notes (context, assumptions, constraints, decisions, work items)
|
|
45
|
+
- Assess Beat quality and implementation completeness
|
|
46
|
+
- Compose and transition Revisions through the delivery lifecycle
|
|
47
|
+
- View project activity and audit trails
|
|
48
|
+
- Export/import project snapshots
|
|
49
|
+
- Find similar Beats and Notes via vector similarity
|