@buildaureon/mcp 0.1.8 → 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 -401
- package/dist/index.js +1 -1
- 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 -351
- package/docs/security.md +335 -335
- package/docs/setup.md +347 -347
- package/docs/tools.md +765 -765
- package/examples/claude-desktop.json +11 -11
- package/examples/cursor.mcp.json +11 -11
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@buildaureon/mcp` are documented in this file.
|
|
4
|
+
|
|
5
|
+
The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
|
|
6
|
+
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.1.9] — 2026-09-08
|
|
9
|
+
|
|
10
|
+
Published on npm as `@buildaureon/mcp@0.1.9`. Depends on `@buildaureon/sdk@0.1.9`.
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Default API is `https://api.aureonlabs.network`. Omit `AUREON_NETWORK` for testnet **46630**. Set `AUREON_NETWORK=mainnet` for chain **4663** on the same host.
|
|
15
|
+
- The SDK client now sends `X-Aureon-Network` so the hosted API can serve both chains.
|
|
16
|
+
- Live tests and verify scripts read credentials from the environment only. They no longer open monorepo or PC files.
|
|
17
|
+
|
|
18
|
+
## [0.1.8] — 2026-09-08
|
|
19
|
+
|
|
20
|
+
Published on npm as `@buildaureon/mcp@0.1.8`. Depends on `@buildaureon/sdk@0.1.8`.
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Process env `AUREON_NETWORK` (`mainnet` default, `testnet` opt-in) via `resolveAureonNetworkFromEnv()`, shared with the SDK.
|
|
25
|
+
- Host snippets omit `AUREON_API_URL` by default so the process uses local mainnet `http://127.0.0.1:8788` (chain 4663).
|
|
26
|
+
|
|
27
|
+
### Changed
|
|
28
|
+
|
|
29
|
+
- Default API is **Robinhood Chain mainnet** local stack: chain **4663**, `http://127.0.0.1:8788`.
|
|
30
|
+
- `AUREON_NETWORK=testnet` selects `https://api.aureonlabs.network`, which remains chain **46630**.
|
|
31
|
+
- Mixed `AUREON_NETWORK` and `AUREON_API_URL` that disagree on a known host throw at startup.
|
|
32
|
+
- Keys must be issued on the **same** API the MCP process will call.
|
|
33
|
+
|
|
34
|
+
### First use (same as testnet)
|
|
35
|
+
|
|
36
|
+
- Empty vault: `aureon_restore_objective` returns **409**.
|
|
37
|
+
- `aureon_prepare_vault_deposit` returns unsigned steps. Agents do not fund the vault and never broadcast.
|
|
38
|
+
- The user or host wallet (including MetaMask) signs when they use the product.
|
|
39
|
+
- After a funded vault, Automatic restore can settle on-chain. Read `settlement`, `verifiedOnChain`, and `explorerUrl` on every receipt.
|
|
40
|
+
|
|
41
|
+
### Documentation
|
|
42
|
+
|
|
43
|
+
- README, setup, auth, architecture, tools, agent-guide, and security aligned to mainnet default, 54 tools, and the 409-then-prepare path.
|
|
44
|
+
- Version strings in setup and auth updated from `0.1.1` to `0.1.8`. Tool-count tables unified at **54**.
|
|
45
|
+
|
|
46
|
+
## [0.1.7] — 2026-09-07
|
|
47
|
+
|
|
48
|
+
Previous public npm release. stdio MCP adapter over `@buildaureon/sdk` for Cursor, Claude Desktop, and other MCP hosts.
|
|
49
|
+
|
|
50
|
+
## [0.1.2] — 2026-08-14
|
|
51
|
+
|
|
52
|
+
Public npm release.
|
|
53
|
+
|
|
54
|
+
## [0.1.1] — 2026-07-26
|
|
55
|
+
|
|
56
|
+
Initial public npm release of `@buildaureon/mcp`.
|
|
57
|
+
|
|
58
|
+
[0.1.9]: https://www.npmjs.com/package/@buildaureon/mcp/v/0.1.9
|
|
59
|
+
[0.1.8]: https://www.npmjs.com/package/@buildaureon/mcp/v/0.1.8
|
|
60
|
+
[0.1.7]: https://www.npmjs.com/package/@buildaureon/mcp/v/0.1.7
|
|
61
|
+
[0.1.2]: https://www.npmjs.com/package/@buildaureon/mcp/v/0.1.2
|
|
62
|
+
[0.1.1]: https://www.npmjs.com/package/@buildaureon/mcp/v/0.1.1
|