-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.81 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.81 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
71
72
73
74
{
"name": "octagon-mcp",
"version": "1.1.0",
"description": "MCP server for Octagon API. Provides specialized AI agents for investment research of public and private markets.",
"main": "dist/index.js",
"type": "module",
"imports": {
"#client": {
"types": "./src/client.ts",
"default": "./dist/client.js"
},
"#tools": {
"types": "./src/tools/index.ts",
"default": "./dist/tools/index.js"
},
"#tools/*": {
"types": "./src/tools/*.ts",
"default": "./dist/tools/*.js"
}
},
"bin": {
"octagon-mcp": "dist/index.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "node scripts/write-version.mjs",
"build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"test": "echo \"No tests specified\"",
"start": "node dist/index.js",
"lint": "echo \"No linting configured\"",
"format": "echo \"No formatting configured\"",
"prepare": "npm run build",
"release": "npm run build && npm publish"
},
"keywords": [
"mcp",
"octagon",
"investment-research",
"sec-filings",
"earnings-transcripts",
"financial-data",
"market-data",
"private-company-research"
],
"author": "Octagon AI",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"dotenv": "^16.3.1",
"openai": "^4.20.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OctagonAI/octagon-mcp-server.git"
},
"bugs": {
"url": "https://github.com/OctagonAI/octagon-mcp-server/issues"
},
"homepage": "https://docs.octagonagents.com"
}