GitHub Kanban MCP Server

{ "name": "@sunwood-ai-labs/github-kanban-mcp-server", "version": "0.2.0", "description": "A Model Context Protocol server for managing GitHub issues as Kanban using gh CLI", "main": "build/index.js", "type": "module", "bin": { "github-kanban-mcp-server": "build/index.js" }, "scripts": { "build": "tsc", "start": "node build/index.js", "dev": "node --loader ts-node/esm src/index.ts", "test": "jest", "prepare": "npm run build" }, "keywords": [ "mcp", "github", "kanban", "issues", "llm", "gh-cli" ], "author": "Sunwood AI Labs", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.4", "dotenv": "^16.3.1" }, "devDependencies": { "@types/jest": "^29.5.5", "@types/node": "^20.8.2", "jest": "^29.7.0", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "typescript": "^5.2.2" }, "files": [ "build", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "git+https://github.com/sunwood-ai-labs/github-kanban-mcp-server.git" }, "bugs": { "url": "https://github.com/sunwood-ai-labs/github-kanban-mcp-server/issues" }, "homepage": "https://github.com/sunwood-ai-labs/github-kanban-mcp-server#readme" }