forked from aha-develop/aha-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "aha-mcp",
"version": "1.1.0",
"description": "MCP server for accessing Aha! GraphQL API",
"type": "module",
"main": "build/index.js",
"bin": {
"aha-mcp": "./build/index.js"
},
"files": [
"build/**/*"
],
"scripts": {
"build": "tsc && chmod +x build/index.js",
"start": "node build/index.js",
"mcp-start": "npm run build && npm run start",
"prepublishOnly": "npm run build"
},
"keywords": [
"aha",
"mcp",
"model-context-protocol",
"ai",
"api"
],
"author": "Aha! (https://www.aha.io)",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"graphql": "^16.0.0",
"graphql-request": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}