-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.51 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.51 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
{
"name": "@llmquant/data-mcp",
"version": "0.3.4",
"description": "LLMQuant Data MCP server — wiki, paper, crypto, equity, macro, and SEC filing tools for AI agents.",
"type": "module",
"bin": {
"llmquant-data-mcp": "dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"dev": "tsx src/index.ts",
"inspect": "npx fastmcp inspect src/index.ts",
"inspect:local": "node scripts/inspect-local.mjs",
"lint": "eslint . --ext .ts,.mjs --max-warnings=0",
"prepare:publish": "node scripts/prepare-publish.mjs",
"start": "node dist/index.js",
"e2e": "node e2e/run-smoke.mjs",
"e2e:remote": "node e2e/run-remote-smoke.mjs",
"e2e:remote:acceptance": "node e2e/run-remote-acceptance.mjs",
"e2e:remote:prepare": "node e2e/prepare-remote-smoke-urls.mjs",
"test": "node --import tsx --test src/*.test.ts src/**/*.test.ts",
"typecheck": "tsc --noEmit",
"verify": "npm run typecheck && npm run lint && npm run test && npm run build",
"publish:pkg": "bash scripts/publish.sh"
},
"dependencies": {
"fastmcp": "^3.34.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@ai-sdk/mcp": "^1.0.42",
"@modelcontextprotocol/sdk": "^1.24.3",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"eslint": "^8.57.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}