-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.13 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
{
"name": "quanttogo-mcp",
"version": "0.3.0",
"description": "MCP Server for AI trading signals — 8 live strategies across US and China markets. Free 30-day trial.",
"mcpName": "com.quanttogo/quanttogo-mcp",
"main": "dist/index.js",
"bin": {
"quanttogo-mcp": "dist/index.js"
},
"files": [
"dist/",
"server.json",
"README.md",
"LICENSE"
],
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch"
},
"keywords": [
"mcp",
"model-context-protocol",
"trading-signals",
"ai-trading",
"quantitative",
"market-data",
"ai-agent",
"finance",
"stocks",
"china-a-share"
],
"author": "QuantToGo <admin@quanttogo.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/QuantToGo/quanttogo-mcp"
},
"homepage": "https://www.quanttogo.com",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"esbuild": "^0.27.3",
"typescript": "^5.7.0"
}
}