harmony-mcp 1.0.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.
Files changed (4) hide show
  1. package/README.md +181 -0
  2. package/dist/cli.js +25693 -0
  3. package/dist/index.js +23743 -0
  4. package/package.json +52 -0
package/package.json ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "harmony-mcp",
3
+ "version": "1.0.0",
4
+ "description": "MCP server for Harmony Kanban board - enables Claude Code to manage your boards",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "bin": {
8
+ "harmony-mcp": "dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/nicholasgriffintn/harmony"
17
+ },
18
+ "homepage": "https://gethmy.com",
19
+ "bugs": {
20
+ "url": "https://github.com/nicholasgriffintn/harmony/issues"
21
+ },
22
+ "keywords": [
23
+ "mcp",
24
+ "model-context-protocol",
25
+ "claude",
26
+ "kanban",
27
+ "harmony",
28
+ "ai",
29
+ "llm",
30
+ "project-management"
31
+ ],
32
+ "engines": {
33
+ "node": ">=18.0.0"
34
+ },
35
+ "scripts": {
36
+ "build": "bun build src/index.ts src/cli.ts --outdir dist --target node",
37
+ "build:bun": "bun build src/index.ts src/http.ts src/cli.ts --outdir dist --target bun",
38
+ "dev": "bun --watch src/index.ts",
39
+ "typecheck": "tsc --noEmit",
40
+ "prepublishOnly": "bun run build"
41
+ },
42
+ "dependencies": {
43
+ "@modelcontextprotocol/sdk": "^1.0.0",
44
+ "commander": "^12.0.0",
45
+ "hono": "^4.0.0",
46
+ "zod": "^3.23.0"
47
+ },
48
+ "devDependencies": {
49
+ "@types/node": "^22.0.0",
50
+ "typescript": "^5.6.0"
51
+ }
52
+ }