@gethmy/mcp 2.13.3 → 2.14.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 +5 -2
- package/dist/cli.js +273 -274
- package/dist/index.js +273 -274
- package/dist/lib/api-client.js +143 -140
- package/dist/lib/oauth-refresh.js +350 -0
- package/package.json +6 -2
- package/src/api-client.ts +13 -12
- package/src/server.ts +389 -322
- package/src/skills.ts +2 -2
package/src/skills.ts
CHANGED
|
@@ -23,7 +23,7 @@ Start work on a Harmony card. Card reference: $ARGUMENTS
|
|
|
23
23
|
## 1. Find & Fetch Card
|
|
24
24
|
|
|
25
25
|
Parse the reference and fetch the card:
|
|
26
|
-
- \`#42\` or \`42\` → \`
|
|
26
|
+
- \`#42\` or \`42\` → \`harmony_get_card\` with \`shortId: 42\`
|
|
27
27
|
- UUID → \`harmony_get_card\` with \`cardId\`
|
|
28
28
|
- Name/text → \`harmony_search_cards\` with \`query\`
|
|
29
29
|
|
|
@@ -77,7 +77,7 @@ If pausing: \`harmony_end_agent_session\` with \`status: "paused"\`
|
|
|
77
77
|
|
|
78
78
|
## Key Tools Reference
|
|
79
79
|
|
|
80
|
-
**Cards:** \`harmony_get_card\`, \`
|
|
80
|
+
**Cards:** \`harmony_get_card\` (by \`cardId\`, \`shortId\`, or \`shortIds\`), \`harmony_search_cards\`, \`harmony_create_card\`, \`harmony_update_card\`, \`harmony_move_card\`, \`harmony_delete_card\`, \`harmony_assign_card\`
|
|
81
81
|
|
|
82
82
|
**Subtasks:** \`harmony_create_subtask\`, \`harmony_toggle_subtask\`, \`harmony_delete_subtask\`
|
|
83
83
|
|