-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "mcp-server-singlestore",
"version": "1.0.0",
"description": "MCP server for interacting with SingleStore databases",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "rm -rf build && tsc --build --force && chmod +x build/index.js",
"start": "node build/index.js",
"start:sse": "SSE_ENABLED=true node build/index.js",
"start:inspector": "SSE_ENABLED=true MCP_SSE_PORT=8081 node build/index.js",
"inspector": "./run_with_inspector.sh",
"test:sse": "./test_sse_connection.sh",
"debug:headers": "./debug_headers.sh",
"dev": "tsc -w",
"dev:sse": "tsc -w & SSE_ENABLED=true nodemon build/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"singlestore",
"database",
"er-diagram"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "1.6.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"mysql2": "^3.9.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.11.19",
"nodemon": "^3.0.3",
"typescript": "^5.3.3"
}
}