@gethmy/mcp 2.2.1 → 2.2.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 +5 -7
- package/dist/cli.js +405 -143
- package/dist/http.js +6 -4
- package/dist/index.js +164 -85
- package/dist/lib/auto-session.js +1 -1
- package/dist/lib/cli.js +9 -0
- package/dist/lib/onboard.js +36 -0
- package/dist/lib/server.js +129 -73
- package/dist/lib/skills.js +1 -1
- package/dist/lib/tui/setup.js +212 -59
- package/dist/remote.js +7132 -10614
- package/package.json +2 -1
- package/src/auto-session.ts +1 -1
- package/src/cli.ts +9 -0
- package/src/onboard.ts +93 -0
- package/src/server.ts +153 -102
- package/src/skills.ts +1 -1
- package/src/tui/setup.ts +249 -67
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @gethmy/mcp
|
|
2
2
|
|
|
3
3
|
MCP (Model Context Protocol) server for [Harmony](https://gethmy.com).
|
|
4
|
-
Enables AI coding agents (Claude Code, OpenAI Codex, Cursor
|
|
4
|
+
Enables AI coding agents (Claude Code, OpenAI Codex, Cursor) to interact with your Harmony boards.
|
|
5
5
|
|
|
6
6
|
## Features
|
|
7
7
|
|
|
@@ -16,7 +16,7 @@ Enables AI coding agents (Claude Code, OpenAI Codex, Cursor, Windsurf) to intera
|
|
|
16
16
|
- **Auto-Session Detection** - automatically starts/ends sessions when agents interact with cards
|
|
17
17
|
- **Auto-Assignment** - automatically assign cards to you when starting agent sessions
|
|
18
18
|
- **Memory Sync** - bidirectional sync between local markdown files and remote database
|
|
19
|
-
- **Multi-Agent Support** - works with Claude Code, Codex, Cursor
|
|
19
|
+
- **Multi-Agent Support** - works with Claude Code, Codex, Cursor
|
|
20
20
|
- **Smart Setup** - one command configures everything
|
|
21
21
|
- **API Key Authentication** - no database credentials required
|
|
22
22
|
|
|
@@ -43,7 +43,7 @@ npx @gethmy/mcp setup
|
|
|
43
43
|
The smart setup wizard will:
|
|
44
44
|
|
|
45
45
|
- Validate your API key
|
|
46
|
-
- Detect installed AI agents (Claude Code, Cursor,
|
|
46
|
+
- Detect installed AI agents (Claude Code, Cursor, Codex)
|
|
47
47
|
- Install skills globally (recommended) or locally
|
|
48
48
|
- Let you select your workspace and project
|
|
49
49
|
|
|
@@ -61,7 +61,7 @@ Connect any MCP-compatible agent to Harmony's hosted endpoint - no local server
|
|
|
61
61
|
|
|
62
62
|
### Universal Setup with `add-mcp`
|
|
63
63
|
|
|
64
|
-
The fastest way to connect any agent to the remote endpoint. One command configures Claude Code, Cursor, VS Code,
|
|
64
|
+
The fastest way to connect any agent to the remote endpoint. One command configures Claude Code, Cursor, VS Code, Codex, and more:
|
|
65
65
|
|
|
66
66
|
```bash
|
|
67
67
|
npx add-mcp https://mcp.gethmy.com/mcp -- --header "Authorization: Bearer hmy_your_key_here"
|
|
@@ -150,7 +150,6 @@ npx @gethmy/mcp serve # Start MCP server
|
|
|
150
150
|
| **Claude Code** | `/hmy #42`, `/hmy-plan` | `~/.claude/settings.json` | Local (stdio) |
|
|
151
151
|
| **OpenAI Codex** | `/prompts:hmy #42` | `~/.codex/config.toml` | Local (stdio) |
|
|
152
152
|
| **Cursor** | MCP tools auto-available | `.cursor/mcp.json` | Local (stdio) |
|
|
153
|
-
| **Windsurf** | MCP tools auto-available | `~/.codeium/windsurf/mcp_config.json` | Local (stdio) |
|
|
154
153
|
| **Claude.ai** | MCP tools auto-available | Remote MCP settings in Claude.ai | Remote (HTTP) |
|
|
155
154
|
| **Any agent** | MCP tools auto-available | Auto-configured via `npx add-mcp` | Remote (HTTP) |
|
|
156
155
|
|
|
@@ -482,8 +481,7 @@ Add this to prevent accidentally committing local config:
|
|
|
482
481
|
┌─────────────────┐ MCP Protocol ┌──────────────────┐
|
|
483
482
|
│ Claude Code │ ───────────────────────▶│ @gethmy/mcp │
|
|
484
483
|
│ Cursor │ (local stdio) │ (local server) │
|
|
485
|
-
│
|
|
486
|
-
│ Codex │ │
|
|
484
|
+
│ Codex │ └────────┬─────────┘ │
|
|
487
485
|
└─────────────────┘ │ API Key Auth
|
|
488
486
|
▼
|
|
489
487
|
┌─────────────────┐ Streamable HTTP ┌──────────────────┐
|