-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "form4api-mcp",
"version": "1.10.0",
"mcpName": "io.github.theodor90/form4api-mcp",
"description": "MCP server for Form4API — SEC Form 4 insider trading data. Lets Claude / Cursor / Windsurf / Zed query real-time US insider trading data via natural language.",
"keywords": [
"mcp",
"model-context-protocol",
"mcp-server",
"claude",
"cursor",
"windsurf",
"zed",
"insider-trading",
"sec",
"edgar",
"form4",
"form-4",
"finance",
"stocks",
"ai",
"ai-tools",
"sec-edgar",
"form-144",
"13f",
"13f-hr",
"webhooks",
"financial-data",
"fintech"
],
"license": "MIT",
"homepage": "https://www.form4api.com",
"repository": {
"type": "git",
"url": "git+https://github.com/theodor90/form4api-mcp.git"
},
"bugs": {
"url": "https://github.com/theodor90/form4api-mcp/issues"
},
"bin": {
"form4api-mcp": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "node test/mcp-test.mjs",
"codegen": "node codegen/generate.mjs",
"codegen:check": "node codegen/check.mjs",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.0"
},
"engines": {
"node": ">=18"
}
}