@cedricziel/aha-mcp
Version:
Model Context Protocol (MCP) Server for Aha
65 lines (64 loc) • 1.64 kB
JSON
{
"name": "@cedricziel/aha-mcp",
"module": "src/index.ts",
"type": "module",
"version": "0.0.1",
"description": "Model Context Protocol (MCP) Server for Aha",
"private": false,
"main": "./build/index.js",
"bin": {
"aha-mcp": "./build/index.js"
},
"files": [
"build/",
"README.md",
"LICENSE"
],
"keywords": [
"mcp",
"model-context-protocol",
"aha",
"aha-io",
"product-management",
"ai",
"claude"
],
"author": "Cedric Ziel <cedric@cedric-ziel.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cedricziel/aha-mcp.git"
},
"homepage": "https://github.com/cedricziel/aha-mcp#readme",
"bugs": {
"url": "https://github.com/cedricziel/aha-mcp/issues"
},
"scripts": {
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir build --target node",
"build:http": "bun build src/server/http-server.ts --outdir build --target node",
"dev": "bun --watch src/index.ts",
"start:http": "bun run src/server/http-server.ts",
"dev:http": "bun --watch src/server/http-server.ts",
"test": "bun test",
"test:watch": "bun test --watch",
"prepublishOnly": "bun run build"
},
"devDependencies": {
"@types/bun": "latest",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.15.29"
},
"peerDependencies": {
"typescript": "^5.8.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"aha-js": "github:cedricziel/aha-js",
"axios": "^1.9.0",
"cors": "^2.8.5",
"express": "^4.21.2",
"zod": "^4.0.5"
}
}