@buildaureon/mcp 0.1.7 → 0.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +62 -0
- package/README.md +402 -399
- package/dist/index.js +11 -4
- package/dist/index.js.map +1 -1
- package/docs/agent-guide.md +652 -652
- package/docs/architecture.md +377 -377
- package/docs/auth.md +351 -349
- package/docs/security.md +335 -335
- package/docs/setup.md +347 -346
- package/docs/tools.md +765 -765
- package/examples/claude-desktop.json +11 -12
- package/examples/cursor.mcp.json +11 -12
- package/package.json +67 -63
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
{
|
|
2
|
-
"mcpServers": {
|
|
3
|
-
"aureon": {
|
|
4
|
-
"command": "npx",
|
|
5
|
-
"args": ["-y", "@buildaureon/mcp"],
|
|
6
|
-
"env": {
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"aureon": {
|
|
4
|
+
"command": "npx",
|
|
5
|
+
"args": ["-y", "@buildaureon/mcp"],
|
|
6
|
+
"env": {
|
|
7
|
+
"AUREON_API_KEY": "<issued-developer-api-key>"
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
package/examples/cursor.mcp.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
|
-
{
|
|
2
|
-
"mcpServers": {
|
|
3
|
-
"aureon": {
|
|
4
|
-
"command": "npx",
|
|
5
|
-
"args": ["-y", "@buildaureon/mcp"],
|
|
6
|
-
"env": {
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"aureon": {
|
|
4
|
+
"command": "npx",
|
|
5
|
+
"args": ["-y", "@buildaureon/mcp"],
|
|
6
|
+
"env": {
|
|
7
|
+
"AUREON_API_KEY": "<issued-developer-api-key>"
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
}
|
package/package.json
CHANGED
|
@@ -1,63 +1,67 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@buildaureon/mcp",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "MCP server for AUREON Financial Compass: Financial Compass capital context for AI agents",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
8
|
-
"bin": {
|
|
9
|
-
"aureon-mcp": "./dist/index.js"
|
|
10
|
-
},
|
|
11
|
-
"exports": {
|
|
12
|
-
".": {
|
|
13
|
-
"types": "./dist/index.d.ts",
|
|
14
|
-
"import": "./dist/index.js"
|
|
15
|
-
}
|
|
16
|
-
},
|
|
17
|
-
"files": [
|
|
18
|
-
"dist",
|
|
19
|
-
"README.md",
|
|
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
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@buildaureon/mcp",
|
|
3
|
+
"version": "0.1.9",
|
|
4
|
+
"description": "MCP server for AUREON Financial Compass: Financial Compass capital context for AI agents",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"bin": {
|
|
9
|
+
"aureon-mcp": "./dist/index.js"
|
|
10
|
+
},
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"README.md",
|
|
20
|
+
"CHANGELOG.md",
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"docs",
|
|
23
|
+
"examples"
|
|
24
|
+
],
|
|
25
|
+
"keywords": [
|
|
26
|
+
"aureon",
|
|
27
|
+
"mcp",
|
|
28
|
+
"model-context-protocol",
|
|
29
|
+
"robinhood-chain",
|
|
30
|
+
"financial-compass",
|
|
31
|
+
"ai-agents"
|
|
32
|
+
],
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "https://github.com/buildaureon/aureon-mcp"
|
|
36
|
+
},
|
|
37
|
+
"license": "MIT",
|
|
38
|
+
"publishConfig": {
|
|
39
|
+
"access": "public"
|
|
40
|
+
},
|
|
41
|
+
"engines": {
|
|
42
|
+
"node": ">=20"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.12.1",
|
|
46
|
+
"zod": "^3.25.67",
|
|
47
|
+
"@buildaureon/sdk": "0.1.9"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@types/node": "^22.13.10",
|
|
51
|
+
"tsup": "^8.4.0",
|
|
52
|
+
"tsx": "^4.19.3",
|
|
53
|
+
"typescript": "^5.8.2",
|
|
54
|
+
"viem": "^2.55.0"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"build": "tsup",
|
|
58
|
+
"dev": "tsx src/index.ts",
|
|
59
|
+
"start": "node dist/index.js",
|
|
60
|
+
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
61
|
+
"test": "tsx --test tests/**/*.test.ts",
|
|
62
|
+
"test:e2e": "tsx tests/e2e-full.mjs",
|
|
63
|
+
"test:phase2": "tsx tests/verify-phase2-session.mjs",
|
|
64
|
+
"test:live-agent": "tsx tests/live-agent-exercise.mjs",
|
|
65
|
+
"verify": "tsx tests/verify-agent.ts"
|
|
66
|
+
}
|
|
67
|
+
}
|