-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.01 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.01 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
{
"name": "@cube-dev/mcp-server",
"version": "1.3.0",
"description": "A Model Context Protocol (MCP) server that provides chat functionality with Cube's AI agent for analytics and data exploration",
"type": "module",
"bin": {
"mcp-server": "index.js"
},
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"dotenv": "^16.0.0",
"node-fetch": "^3.3.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"server",
"cube",
"analytics",
"ai",
"data-exploration",
"business-intelligence"
],
"author": "Cube Dev Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/cube-js/cube.git",
"directory": "examples-demos/simple-mcp-server"
},
"homepage": "https://cube.dev",
"bugs": {
"url": "https://github.com/cube-js/cube/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"index.js",
"README.md"
]
}