-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.2 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.2 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@asphere/aapi-mcp-server",
"version": "0.1.3",
"description": "MCP server for the Ankr Advanced API",
"author": "Web3 Technologies Inc. DBA Asphere",
"homepage": "https://github.com/Asphere-xyz/aapi-mcp-server",
"bugs": "https://github.com/Asphere-xyz/aapi-mcp-server/issues",
"license": "MIT",
"type": "module",
"bin": {
"aapi-mcp-server": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"dev": "tsx src/index.ts",
"dev:sse": "tsx src/sse.ts",
"dev:remote": "tsx src/remote.ts",
"start": "node dist/index.js",
"start:sse": "node dist/sse.js",
"start:remote": "node dist/remote.js"
},
"engines": {
"node": ">=23.6.0"
},
"keywords": [
"ankr",
"asphere",
"advanced api",
"aapi",
"mcp",
"server",
"blockchain",
"ai",
"ai tools"
],
"dependencies": {
"@ankr.com/ankr.js": "0.6.0-alpha.0",
"@modelcontextprotocol/sdk": "^1.5.0",
"express": "^4.21.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.13.5",
"tsx": "^4.19.3",
"typescript": "^5.7.3"
}
}