@buildaureon/mcp 0.1.1

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/docs/tools.md ADDED
@@ -0,0 +1,553 @@
1
+ # AUREON MCP Tool Reference
2
+
3
+ Complete reference for every tool exposed by `@buildaureon/mcp`.
4
+
5
+ Each tool maps to one public method on the `@buildaureon/sdk` client. Handlers validate arguments, call the live AUREON API, and return pretty-printed JSON (or an agent-readable error envelope).
6
+
7
+ For request/response shapes, error codes, and HTTP contracts, see the **@buildaureon/sdk documentation**.
8
+
9
+ **Tool count:** 34.
10
+
11
+ **API:** `https://api.aureonlabs.network` (Robinhood Chain L2, early access).
12
+
13
+ ---
14
+
15
+ ## Conventions
16
+
17
+ These conventions apply to every tool below.
18
+
19
+ | Convention | Meaning |
20
+ | --- | --- |
21
+ | Issued API key | Set `AUREON_API_KEY` to an issued Developers key. That key is product access **and** wallet identity for control-plane calls. |
22
+ | Optional Bearer | You may also supply a wallet Bearer (`AUREON_AUTH_TOKEN` or `aureon_verify_wallet`). If both key and Bearer are present, Bearer wins. |
23
+ | Live API only | Tools talk to the live AUREON gateway. There is no local-backend mode for agents. |
24
+ | Private key outside MCP | Deposit and withdraw **prepare** tools return unsigned steps. Signing and broadcast happen in the host wallet — never inside the MCP process. |
25
+ | Default automation | `aureon_create_objective` defaults `automationMode` to `"auto"`. |
26
+ | Locked at create | `targetSymbol` and `automationMode` are immutable after create. Recreate the objective to change them. |
27
+ | Unsigned prepare | `aureon_prepare_vault_deposit` and `aureon_prepare_vault_withdraw` never broadcast. |
28
+ | Settlement honesty | Restore / execution receipts may show `settlement: "vault"` (on-chain) or `"staged"` (ledger-local). Label them honestly. |
29
+
30
+ The catalog includes `aureon_dev_login` for preview APIs only. On the live production API it fails by design — agents should use an issued key (or optional Bearer) instead.
31
+
32
+ ### Auth bootstrap (agents)
33
+
34
+ 1. Create an issued key in the operator utility **Developers** console.
35
+ 2. Configure the MCP host with `AUREON_API_URL=https://api.aureonlabs.network` and `AUREON_API_KEY`.
36
+ 3. Call tools. Day-to-day agent work does **not** require a wallet handshake.
37
+
38
+ Optional wallet path: `aureon_get_auth_nonce` → host signs → `aureon_verify_wallet`. Prefer issued keys for always-on agents.
39
+
40
+ ### Response shape
41
+
42
+ Successful calls return structured JSON (formatted for agents). Failures return an error object with a stable code and message — see the **@buildaureon/sdk documentation** error model.
43
+
44
+ ### Quick index
45
+
46
+ | Group | Tools |
47
+ | --- | --- |
48
+ | Health | `aureon_ping` |
49
+ | Auth & identity | `aureon_get_auth_nonce`, `aureon_verify_wallet`, `aureon_dev_login`, `aureon_logout`, `aureon_me` |
50
+ | Dashboard & read | `aureon_get_overview`, `aureon_get_portfolio`, `aureon_list_objectives`, `aureon_get_objective`, `aureon_get_health`, `aureon_list_timeline`, `aureon_list_market_presets`, `aureon_get_restore_plan`, `aureon_list_executions`, `aureon_get_vault`, `aureon_get_vault_status` |
51
+ | Objectives | `aureon_create_objective`, `aureon_update_objective`, `aureon_pause_objective`, `aureon_resume_objective` |
52
+ | Portfolio write | `aureon_set_portfolio`, `aureon_clear_portfolio`, `aureon_sync_portfolio` |
53
+ | Execution | `aureon_run_execution`, `aureon_restore_objective` |
54
+ | Market | `aureon_apply_market_event`, `aureon_refresh_watchdog` |
55
+ | Vault prepare | `aureon_prepare_vault_deposit`, `aureon_prepare_vault_withdraw` |
56
+ | Developer keys | `aureon_list_api_keys`, `aureon_create_api_key`, `aureon_revoke_api_key`, `aureon_toggle_api_key` |
57
+
58
+ ---
59
+
60
+ ## Health
61
+
62
+ ### `aureon_ping`
63
+
64
+ **Purpose:** Confirm the live API is reachable and return a lightweight service / version smoke payload.
65
+
66
+ **Typical args:** none.
67
+
68
+ **When to use:** First call in a session; connectivity checks; before diagnosing auth or policy failures.
69
+
70
+ **Caveats:** A successful ping does not prove the issued key is valid for wallet-scoped tools — follow with `aureon_me` when identity matters.
71
+
72
+ ---
73
+
74
+ ## Auth & identity
75
+
76
+ ### `aureon_get_auth_nonce`
77
+
78
+ **Purpose:** Fetch an EIP-191 challenge message for a wallet address so the host can sign a Bearer login.
79
+
80
+ **Typical args:**
81
+
82
+ | Arg | Required | Notes |
83
+ | --- | --- | --- |
84
+ | `address` | yes | Wallet `0x…` |
85
+
86
+ **When to use:** Optional wallet handshake only. Issued API keys usually skip this path.
87
+
88
+ **Caveats:** The message must be signed by the matching wallet. Early-access wallets may still need an invite on verify.
89
+
90
+ ### `aureon_verify_wallet`
91
+
92
+ **Purpose:** Exchange a signed nonce for a Bearer session and store it in-process for later tools in this MCP session.
93
+
94
+ **Typical args:**
95
+
96
+ | Arg | Required | Notes |
97
+ | --- | --- | --- |
98
+ | `address` | yes | Same wallet as the nonce |
99
+ | `message` | yes | From `aureon_get_auth_nonce` |
100
+ | `signature` | yes | Wallet signature hex |
101
+ | `inviteCode` | no | First-login invite when required |
102
+
103
+ **When to use:** When you intentionally want a Bearer session instead of (or in addition to) an issued key.
104
+
105
+ **Caveats:** Bearer wins over the API key when both are present. Do not ask the user for a private key — only a signature over the challenge.
106
+
107
+ ### `aureon_dev_login`
108
+
109
+ **Purpose:** Preview-API shortcut that returns a Bearer session without a wallet signature.
110
+
111
+ **Typical args:** none.
112
+
113
+ **When to use:** Only on a preview / staging API that explicitly enables `AUREON_ALLOW_DEV_LOGIN=1`.
114
+
115
+ **Caveats:** Fails on `https://api.aureonlabs.network`. Do not put this tool in production agent playbooks. Prefer issued keys.
116
+
117
+ ### `aureon_logout`
118
+
119
+ **Purpose:** Revoke the current Bearer session and clear the in-process token.
120
+
121
+ **Typical args:** none.
122
+
123
+ **When to use:** End a wallet session; rotate away from a Bearer after debugging.
124
+
125
+ **Caveats:** Does not revoke the issued `AUREON_API_KEY`. Key-only agents may not need this tool.
126
+
127
+ ### `aureon_me`
128
+
129
+ **Purpose:** Return the wallet bound to the issued API key or the current Bearer session.
130
+
131
+ **Typical args:** none.
132
+
133
+ **When to use:** Identity confirmation after connect; every morning check; before mutating portfolio or objectives.
134
+
135
+ **Caveats:** If you see an error about env keys that cannot identify a wallet, replace the key with an **issued** Developers key.
136
+
137
+ ---
138
+
139
+ ## Dashboard & portfolio (read)
140
+
141
+ ### `aureon_get_overview`
142
+
143
+ **Purpose:** Dashboard rollup — AUM, objective counts, aggregate health posture.
144
+
145
+ **Typical args:** none.
146
+
147
+ **When to use:** Morning checks; high-level status before diving into a single objective.
148
+
149
+ **Caveats:** Overview is a summary. Drill into `aureon_get_health` / `aureon_get_objective` for policy decisions.
150
+
151
+ ### `aureon_get_portfolio`
152
+
153
+ **Purpose:** Current Capital Book snapshot — positions, marks, and weights.
154
+
155
+ **Typical args:** none.
156
+
157
+ **When to use:** After sync; before creating objectives; when explaining current exposure.
158
+
159
+ **Caveats:** Stale books mislead restore logic. Prefer `aureon_sync_portfolio` when chain balances may have changed.
160
+
161
+ ### `aureon_list_objectives`
162
+
163
+ **Purpose:** List all Financial Compass objectives for the authenticated wallet.
164
+
165
+ **Typical args:** none.
166
+
167
+ **When to use:** Discover IDs; inventory auto vs paused objectives; pick a target for restore.
168
+
169
+ **Caveats:** Empty list is normal for new wallets. Create with `automationMode: "auto"` for agent-driven restores.
170
+
171
+ ### `aureon_get_objective`
172
+
173
+ **Purpose:** Fetch one objective by ID (policy fields, status, locked create-time fields).
174
+
175
+ **Typical args:**
176
+
177
+ | Arg | Required | Notes |
178
+ | --- | --- | --- |
179
+ | `objectiveId` | yes | From list or create |
180
+
181
+ **When to use:** Inspect before update / pause / restore; confirm `targetSymbol` and `automationMode`.
182
+
183
+ **Caveats:** Remember `targetSymbol` and `automationMode` cannot be patched later.
184
+
185
+ ### `aureon_get_health`
186
+
187
+ **Purpose:** Health / drift / breach state for one objective or all objectives.
188
+
189
+ **Typical args:**
190
+
191
+ | Arg | Required | Notes |
192
+ | --- | --- | --- |
193
+ | `objectiveId` | no | Omit for all |
194
+
195
+ **When to use:** After watchdog refresh; before restore; when the operator asks why something looks red.
196
+
197
+ **Caveats:** Health can flap after marks update. Re-read after restore instead of spamming restores.
198
+
199
+ ### `aureon_list_timeline`
200
+
201
+ **Purpose:** Event timeline — objective changes, executions, health transitions.
202
+
203
+ **Typical args:**
204
+
205
+ | Arg | Required | Notes |
206
+ | --- | --- | --- |
207
+ | `objectiveId` | no | Omit for all |
208
+
209
+ **When to use:** Post-restore confirmation; audit trail for the operator; debugging unexpected state.
210
+
211
+ **Caveats:** Timeline is historical context, not a substitute for the latest health snapshot.
212
+
213
+ ### `aureon_list_market_presets`
214
+
215
+ **Purpose:** List available market-event simulation presets for rehearsal.
216
+
217
+ **Typical args:** none.
218
+
219
+ **When to use:** Before `aureon_apply_market_event` in integration / demo flows.
220
+
221
+ **Caveats:** Presets are for rehearsal, not live oracle prices.
222
+
223
+ ### `aureon_get_restore_plan`
224
+
225
+ **Purpose:** Inspect the proposed restore plan for an objective (steps to return to policy).
226
+
227
+ **Typical args:**
228
+
229
+ | Arg | Required | Notes |
230
+ | --- | --- | --- |
231
+ | `objectiveId` | yes | Target objective |
232
+
233
+ **When to use:** Always prefer reading the plan before `aureon_restore_objective` when explaining risk to a human.
234
+
235
+ **Caveats:** Plans can change after marks or vault balances move. Refresh health / watchdog if the book is stale.
236
+
237
+ ### `aureon_list_executions`
238
+
239
+ **Purpose:** Recent execution receipts for restorative actions.
240
+
241
+ **Typical args:**
242
+
243
+ | Arg | Required | Notes |
244
+ | --- | --- | --- |
245
+ | `objectiveId` | no | Omit for all |
246
+
247
+ **When to use:** Confirm last restore; check `settlement` field (`vault` vs `staged`).
248
+
249
+ **Caveats:** Never claim on-chain settlement unless the receipt says `settlement: "vault"`.
250
+
251
+ ### `aureon_get_vault`
252
+
253
+ **Purpose:** Full vault overview — balances, tokens, deposit-related history.
254
+
255
+ **Typical args:** none.
256
+
257
+ **When to use:** Funding diagnosis; after a broadcasted deposit; capital readiness reviews.
258
+
259
+ **Caveats:** Vault overview can lag until chain txs confirm and portfolio sync runs.
260
+
261
+ ### `aureon_get_vault_status`
262
+
263
+ **Purpose:** Compact funding / readiness status before Automatic restores.
264
+
265
+ **Typical args:** none.
266
+
267
+ **When to use:** Morning checks; gate before creating auto objectives; after prepare+broadcast deposits.
268
+
269
+ **Caveats:** Empty vault often blocks meaningful Automatic restores — prepare a deposit and have the host sign.
270
+
271
+ ---
272
+
273
+ ## Portfolio (write)
274
+
275
+ ### `aureon_set_portfolio`
276
+
277
+ **Purpose:** Replace the Capital Book with an explicit position list.
278
+
279
+ **Typical args:**
280
+
281
+ | Arg | Required | Notes |
282
+ | --- | --- | --- |
283
+ | `positions` | yes | Array of rows: `symbol`, `name`, `category`, `quantity`, `markPriceUsd` |
284
+ | `positions[].category` | yes | `stable` \| `stock_token` \| `gas` \| `other` |
285
+
286
+ **When to use:** Controlled demos or explicit book overrides when the operator supplies positions.
287
+
288
+ **Caveats:** Overwrites the book. Prefer `aureon_sync_portfolio` for live chain marks in production agent loops.
289
+
290
+ ### `aureon_clear_portfolio`
291
+
292
+ **Purpose:** Clear all Capital Book positions for the authenticated wallet.
293
+
294
+ **Typical args:** none.
295
+
296
+ **When to use:** Reset before a clean sync or demo restart.
297
+
298
+ **Caveats:** Destructive. Confirm with the operator before clearing a live book.
299
+
300
+ ### `aureon_sync_portfolio`
301
+
302
+ **Purpose:** Replace the Capital Book with on-chain balances for the session wallet.
303
+
304
+ **Typical args:** none.
305
+
306
+ **When to use:** Default read-path refresh; after deposits/withdraws broadcast; before create / restore.
307
+
308
+ **Caveats:** Sync does not move vault funds by itself — it refreshes the book the policy engine reads.
309
+
310
+ ---
311
+
312
+ ## Objectives (write)
313
+
314
+ ### `aureon_create_objective`
315
+
316
+ **Purpose:** Create a Financial Compass objective. Defaults `automationMode` to `"auto"`.
317
+
318
+ **Typical args:**
319
+
320
+ | Arg | Required | Notes |
321
+ | --- | --- | --- |
322
+ | `name` | yes | Display name |
323
+ | `kind` | yes | `stable_allocation` \| `balanced_portfolio` \| `risk_ceiling` \| `reward_reinvestment` |
324
+ | `targetWeight` | yes | 0–1 |
325
+ | `tolerance` | yes | Drift band 0–1 |
326
+ | `priority` | no | `low` \| `medium` \| `high` \| `critical` |
327
+ | `maxRiskScore` | no | For risk-ceiling kinds |
328
+ | `reinvestRatio` | no | For reward kinds |
329
+ | `targetSymbol` | no | Asset symbol (nullable); **locked after create** |
330
+ | `automationMode` | no | `auto` \| `manual`; default **`auto`**; **locked after create** |
331
+
332
+ **When to use:** New policy intent (e.g. maintain ~15% WETH automatically).
333
+
334
+ **Caveats:** Agents should use **Automatic** (`auto`) unless the human explicitly wants Manual Approve. To change symbol or mode later, create a new objective (pause or leave the old one).
335
+
336
+ ### `aureon_update_objective`
337
+
338
+ **Purpose:** Partial update of mutable fields (name, weight, tolerance, priority, optional risk/reinvest fields).
339
+
340
+ **Typical args:**
341
+
342
+ | Arg | Required | Notes |
343
+ | --- | --- | --- |
344
+ | `objectiveId` | yes | Target |
345
+ | `name` | no | Display name |
346
+ | `priority` | no | Priority enum |
347
+ | `targetWeight` | no | 0–1 |
348
+ | `tolerance` | no | 0–1 |
349
+ | `maxRiskScore` | no | Optional |
350
+ | `reinvestRatio` | no | Optional |
351
+
352
+ **When to use:** Tighten tolerance; rename; adjust weight without changing token or automation mode.
353
+
354
+ **Caveats:** **Cannot** change `targetSymbol` or `automationMode`. If the API rejects those fields, recreate instead.
355
+
356
+ ### `aureon_pause_objective`
357
+
358
+ **Purpose:** Pause continuous evaluation for an objective.
359
+
360
+ **Typical args:** `objectiveId` (required).
361
+
362
+ **When to use:** Temporary halt during funding, maintenance, or operator review.
363
+
364
+ **Caveats:** Paused objectives will not drive Automatic restores until resumed.
365
+
366
+ ### `aureon_resume_objective`
367
+
368
+ **Purpose:** Resume evaluation for a paused objective.
369
+
370
+ **Typical args:** `objectiveId` (required).
371
+
372
+ **When to use:** After funding the vault or finishing a maintenance window.
373
+
374
+ **Caveats:** Re-check health after resume; a breach may already exist.
375
+
376
+ ---
377
+
378
+ ## Compass / execution
379
+
380
+ ### `aureon_run_execution`
381
+
382
+ **Purpose:** Run restorative execution for an objective currently outside policy.
383
+
384
+ **Typical args:** `objectiveId` (required).
385
+
386
+ **When to use:** Explicit execution path when the product flow calls for `runExecution` rather than vault-backed restore.
387
+
388
+ **Caveats:** Prefer reading health / plan first. Report settlement type honestly from the receipt.
389
+
390
+ ### `aureon_restore_objective`
391
+
392
+ **Purpose:** Run vault-backed restorative execution for an objective outside policy (primary agent restore path).
393
+
394
+ **Typical args:** `objectiveId` (required).
395
+
396
+ **When to use:** After a clear breach and a reviewed restore plan; Automatic objectives with a funded vault.
397
+
398
+ **Caveats:** Empty vault or Manual-only product constraints can block or stage settlement. Confirm with `aureon_list_timeline` / `aureon_list_executions`.
399
+
400
+ ---
401
+
402
+ ## Market
403
+
404
+ ### `aureon_apply_market_event`
405
+
406
+ **Purpose:** Apply a controlled mark shock to a symbol for integration rehearsal; optionally trigger auto-restore.
407
+
408
+ **Typical args:**
409
+
410
+ | Arg | Required | Notes |
411
+ | --- | --- | --- |
412
+ | `symbol` | yes | e.g. `TSLA` |
413
+ | `priceChangeRatio` | yes | Fractional change (`-0.1` = −10%) |
414
+ | `name` | no | Event label |
415
+ | `description` | no | Human description |
416
+ | `autoRestore` | no | If true, may run restorative execution on breach |
417
+
418
+ **When to use:** Demo / rehearsal of drift → plan → restore. Not for production price discovery.
419
+
420
+ **Caveats:** Do not treat rehearsal shocks as live oracle prices for real capital decisions.
421
+
422
+ ### `aureon_refresh_watchdog`
423
+
424
+ **Purpose:** Refresh portfolio marks from live data and re-evaluate objectives.
425
+
426
+ **Typical args:** none.
427
+
428
+ **When to use:** Morning checks; after market events; before reading health for restore decisions.
429
+
430
+ **Caveats:** Refresh alone does not restore. Follow with health / plan / restore as needed.
431
+
432
+ ---
433
+
434
+ ## Vault
435
+
436
+ ### `aureon_prepare_vault_deposit`
437
+
438
+ **Purpose:** Prepare **unsigned** vault deposit steps for a symbol and amount.
439
+
440
+ **Typical args:**
441
+
442
+ | Arg | Required | Notes |
443
+ | --- | --- | --- |
444
+ | `symbol` | yes | `ETH` or allowlisted ERC-20 |
445
+ | `amount` | yes | Human-readable amount string |
446
+
447
+ **When to use:** Fund the vault so Automatic restores can settle on-chain.
448
+
449
+ **Caveats:** Returns calldata / steps only. The **host** must sign and broadcast with a private key **outside** MCP. API key alone cannot move funds. After broadcast, sync and re-check vault status.
450
+
451
+ ### `aureon_prepare_vault_withdraw`
452
+
453
+ **Purpose:** Prepare **unsigned** vault withdraw steps.
454
+
455
+ **Typical args:**
456
+
457
+ | Arg | Required | Notes |
458
+ | --- | --- | --- |
459
+ | `amount` | yes | Human-readable amount string |
460
+ | `symbol` | no | Default WETH (not ETH) |
461
+
462
+ **When to use:** Operator-directed withdrawals after confirming vault balances.
463
+
464
+ **Caveats:** Same non-custodial boundary as deposit — prepare ≠ completed withdrawal until the host broadcasts.
465
+
466
+ ---
467
+
468
+ ## Developer API keys
469
+
470
+ ### `aureon_list_api_keys`
471
+
472
+ **Purpose:** List API key metadata for the authenticated wallet (no secrets).
473
+
474
+ **Typical args:** none.
475
+
476
+ **When to use:** Inventory keys; find IDs for toggle / revoke.
477
+
478
+ **Caveats:** Secrets are never re-listed after create. Metadata only.
479
+
480
+ ### `aureon_create_api_key`
481
+
482
+ **Purpose:** Create a new issued SDK API key. The secret is returned **once**.
483
+
484
+ **Typical args:**
485
+
486
+ | Arg | Required | Notes |
487
+ | --- | --- | --- |
488
+ | `name` | yes | Display name (min length enforced) |
489
+
490
+ **When to use:** Rotate or provision a new agent key under an already-authenticated identity.
491
+
492
+ **Caveats:** Treat the returned secret like a password. Do not echo it into public chat logs. Store it in the MCP host env as `AUREON_API_KEY`.
493
+
494
+ ### `aureon_revoke_api_key`
495
+
496
+ **Purpose:** Permanently revoke (delete) an issued API key.
497
+
498
+ **Typical args:** `keyId` (required).
499
+
500
+ **When to use:** Key compromise; decommissioning an agent.
501
+
502
+ **Caveats:** Irreversible for that key material. Confirm the ID from `aureon_list_api_keys`.
503
+
504
+ ### `aureon_toggle_api_key`
505
+
506
+ **Purpose:** Pause or unpause an API key without revoking it.
507
+
508
+ **Typical args:** `keyId` (required).
509
+
510
+ **When to use:** Temporary freeze during investigation; soft disable without rotation.
511
+
512
+ **Caveats:** Toggled-off keys fail subsequent control-plane calls until re-enabled.
513
+
514
+ ---
515
+
516
+ ## Prompt → tool mapping
517
+
518
+ | Operator ask | Tool(s) |
519
+ | --- | --- |
520
+ | “Is the API up?” | `aureon_ping` |
521
+ | “Which wallet am I?” | `aureon_me` |
522
+ | “Refresh balances from chain” | `aureon_sync_portfolio` |
523
+ | “Is the vault funded?” | `aureon_get_vault_status` |
524
+ | “Maintain 20% WETH automatic” | `aureon_create_objective` (`automationMode: auto`, `targetSymbol: WETH`) |
525
+ | “Why is health red?” | `aureon_get_health`, `aureon_list_timeline` |
526
+ | “Show the restore plan” | `aureon_get_restore_plan` |
527
+ | “Execute restore” | `aureon_restore_objective` |
528
+ | “Simulate −10% TSLA” | `aureon_apply_market_event` |
529
+ | “Prepare 0.1 ETH deposit” | `aureon_prepare_vault_deposit` then host signs |
530
+ | “Rotate my agent key” | `aureon_create_api_key` (+ secure store), optional `aureon_revoke_api_key` |
531
+
532
+ ---
533
+
534
+ ## Related reading
535
+
536
+ - [Agent guide](./agent-guide.md) — read → decide → act playbooks
537
+ - [Auth](./auth.md) — issued key, optional Bearer, private-key boundary
538
+ - [Setup](./setup.md) — host configuration for Cursor / Claude Desktop
539
+ - [Security](./security.md) — stdio trust boundary and key hygiene
540
+ - **@buildaureon/sdk documentation** — typed client methods, data contracts, error model
541
+
542
+ ---
543
+
544
+ ## Notes for implementers
545
+
546
+ - Tool names are stable strings beginning with `aureon_`.
547
+ - Argument validation is strict; omit unknown fields rather than inventing them.
548
+ - Prefer read tools before write tools in every agent turn that mutates state.
549
+ - Automatic mode is the agent default; Manual mode is a human Approve surface.
550
+ - Prepare tools are safe to call with an API key; broadcasting is a separate host step.
551
+ - When summarizing restores, always include settlement type when the receipt provides it.
552
+
553
+ This reference is the canonical MCP tool surface for live agents: **34 tools**, live API, issued key (optional Bearer), and private key only outside MCP for broadcast.
@@ -0,0 +1,12 @@
1
+ {
2
+ "mcpServers": {
3
+ "aureon": {
4
+ "command": "npx",
5
+ "args": ["-y", "@buildaureon/mcp"],
6
+ "env": {
7
+ "AUREON_API_URL": "https://api.aureonlabs.network",
8
+ "AUREON_API_KEY": "<issued-developer-api-key>"
9
+ }
10
+ }
11
+ }
12
+ }
@@ -0,0 +1,12 @@
1
+ {
2
+ "mcpServers": {
3
+ "aureon": {
4
+ "command": "npx",
5
+ "args": ["-y", "@buildaureon/mcp"],
6
+ "env": {
7
+ "AUREON_API_URL": "https://api.aureonlabs.network",
8
+ "AUREON_API_KEY": "<issued-developer-api-key>"
9
+ }
10
+ }
11
+ }
12
+ }
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@buildaureon/mcp",
3
+ "version": "0.1.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
+ "LICENSE",
21
+ "docs",
22
+ "examples"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsup",
26
+ "dev": "tsx src/index.ts",
27
+ "start": "node dist/index.js",
28
+ "typecheck": "tsc -p tsconfig.json --noEmit",
29
+ "test": "tsx --test tests/**/*.test.ts",
30
+ "test:e2e": "tsx tests/e2e-full.mjs",
31
+ "test:live-agent": "tsx tests/live-agent-exercise.mjs",
32
+ "verify": "tsx tests/verify-agent.ts"
33
+ },
34
+ "keywords": [
35
+ "aureon",
36
+ "mcp",
37
+ "model-context-protocol",
38
+ "robinhood-chain",
39
+ "financial-compass",
40
+ "ai-agents"
41
+ ],
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/buildaureon/aureon-mcp"
45
+ },
46
+ "license": "MIT",
47
+ "engines": {
48
+ "node": ">=20"
49
+ },
50
+ "dependencies": {
51
+ "@buildaureon/sdk": "workspace:*",
52
+ "@modelcontextprotocol/sdk": "^1.12.1",
53
+ "zod": "^3.25.67"
54
+ },
55
+ "devDependencies": {
56
+ "@types/node": "^22.13.10",
57
+ "tsup": "^8.4.0",
58
+ "tsx": "^4.19.3",
59
+ "typescript": "^5.8.2",
60
+ "viem": "^2.55.0"
61
+ }
62
+ }