@codazen/harmonica-mcp 0.1.1 → 0.1.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/package.json CHANGED
@@ -1,15 +1,20 @@
1
1
  {
2
2
  "name": "@codazen/harmonica-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.3",
4
4
  "description": "MCP server for Harmonica — connect Claude to your Harmonica projects",
5
5
  "license": "MIT",
6
- "type": "module",
7
6
  "bin": {
8
7
  "harmonica-mcp": "./dist/index.js"
9
8
  },
10
9
  "files": [
11
10
  "dist"
12
11
  ],
12
+ "scripts": {
13
+ "build": "node build.mjs",
14
+ "publish:patch": "node publish.mjs patch",
15
+ "publish:minor": "node publish.mjs minor",
16
+ "publish:major": "node publish.mjs major"
17
+ },
13
18
  "devDependencies": {
14
19
  "esbuild": "^0.25.12"
15
20
  },
@@ -18,8 +23,5 @@
18
23
  },
19
24
  "publishConfig": {
20
25
  "access": "public"
21
- },
22
- "scripts": {
23
- "build": "node build.mjs"
24
26
  }
25
- }
27
+ }
package/README.md DELETED
@@ -1,49 +0,0 @@
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