-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.95 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.95 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "ags-api-mcp-server",
"version": "2026.2.0",
"description": "Stateless MCP server for AccelByte Gaming Services APIs with OpenAPI integration",
"type": "module",
"main": "dist/v2/index.js",
"scripts": {
"build": "tsc && cp -r assets dist/ 2>/dev/null || true",
"build+": "pnpm run format && pnpm run lint && pnpm run build",
"start": "node dist/v2/index.js",
"start:v2": "node dist/v2/index.js",
"start:v1-stdio": "TRANSPORT=stdio node dist/index.js",
"start:v1-http": "TRANSPORT=http node dist/index.js",
"dev": "tsc --watch",
"inspect": "pnpm run inspect:v2",
"inspect:v2": "node dist/v2/index.js & sleep 2 && pnpm dlx @modelcontextprotocol/inspector --transport http --server-url http://localhost:3000/mcp",
"inspect:v1-stdio": "TRANSPORT=stdio pnpm dlx @modelcontextprotocol/inspector --transport stdio -e TRANSPORT=stdio node dist/index.js",
"inspect:v1-http": "TRANSPORT=http node dist/index.js & sleep 2 && pnpm dlx @modelcontextprotocol/inspector --transport http --server-url http://localhost:3000/mcp",
"inspect:clean": "pkill -f '@modelcontextprotocol/inspector' || true && pkill -f 'node dist' || true",
"lint": "eslint 'src/v2/**/*.ts'",
"lint:fix": "eslint 'src/v2/**/*.ts' --fix",
"format": "prettier --write 'src/**/*.ts'",
"format:check": "prettier --check 'src/**/*.ts'",
"test": "pnpm run test:unit",
"test:env": "node -r dotenv/config tests/v1/test-server.js",
"test:integration": "node tests/v1/test-server.js",
"test:unit": "NODE_ENV=test node --import tsx --test tests/**/*.test.ts",
"test:smoke": "NODE_ENV=test node --import tsx --test tests/v2/smoke.test.ts",
"type-check": "tsc --noEmit",
"setup": "node setup-env.js",
"process-specs": "node process-openapi-specs.cjs"
},
"keywords": [
"mcp",
"server",
"http",
"openapi",
"accelbyte"
],
"author": "",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.0",
"axios": "^1.6.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"eventsource": "^4.0.0",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"jwks-client": "^2.0.5",
"open": "^10.2.0",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"yaml": "^2.6.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^24.7.2",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^9.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2",
"ts-node": "^10.9.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}