Aries
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Ariescheck frBTC peg status"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Aries
Make your AI assistant fluent in building on Alkanes + Subfrost.
Aries is a Model Context Protocol server that gives any MCP-capable AI ā Claude Code, Claude Desktop, Cursor ā a knowledge + live-chain-data layer for the Alkanes metaprotocol and the Subfrost network. It runs on your machine with your Subfrost key.
Building on Alkanes means juggling protocol docs, a JSON-RPC gateway, contract
bytecode, and a pile of block:tx ids ā and your AI assistant knows none of it
out of the box. Aries fixes that. Point your assistant at one server and it can
read the docs, query the live chain, and scaffold contracts without leaving
the editor.
What you get
Three capability layers, 21 tools, one local server:
š§ Knowledge ā a searchable corpus of 75 curated docs: the Alkanes metaprotocol, the Subfrost JSON-RPC/REST reference, alkanes-rs, step-by-step tutorials, oracle docs, and reference contracts. ā
aries_search,aries_doc,aries_full_doc,aries_catalog,aries_tutorialsš Live chain data ā read-only queries against the Subfrost gateway: token holdings, contract metadata, bytecode,
simulate, frBTC peg + DIESEL status, oracle reads, AMM pools, and a guarded RPC passthrough. āaries_tokens_by_address,aries_token,aries_contract_meta,aries_bytecode,aries_simulate,aries_frbtc_status,aries_diesel_status,aries_oracle_read,aries_oracle_price,aries_pools,aries_pool_info,aries_rpcš ļø Dev scaffolds ā protocol constants and contract templates, including
orbitalNFTs. āaries_constants,aries_scaffold
Plus a local learning loop (aries_incident_report / aries_incident_query)
that records gotchas to your own machine as you work ā nothing is shared.
Ask your assistant things like
"Is the frBTC peg live, who's the signer, and how much frBTC exists?" "What Alkanes tokens does
bc1pā¦hold?" "Show the AMM pools and a pool's reserves." "How do I build a token / oracle / stablecoin / AMM / Orbital?" "Scaffold an Orbital NFT contract."
Related MCP server: midnight-mcp
Local vs. hosted
This repo is the open, bring-your-own-key edition. It ships the full static baseline knowledge and runs entirely on your machine.
Local (this repo) | Hosted ā aries.bragi.build | |
All 21 tools | ā | ā |
75-doc baseline knowledge | ā | ā |
Your own Subfrost key | ā | managed for you |
Setup | clone + build | connect a URL |
Living corpus of real-world lessons | ā | ā continuously learning |
The hosted instance keeps a growing corpus of real-world incidents ā hard-won lessons contributed by every connected agent ā that a fresh local clone simply doesn't have. If you want the living brain without self-hosting, point your client at the hosted endpoint. Otherwise, everything below gets you running locally in a couple of minutes.
Quickstart
Requirements: Node.js ā„ 20 and a Subfrost API key.
git clone https://github.com/bitbragi/alkanes-aries.git
cd alkanes-aries
npm install
cp .env.example .env # then edit .env ā see "Bring your own key" below
npm run buildBring your own key
Aries talks to the Subfrost gateway with your key ā get one at
api.subfrost.io, then set it in .env:
SUBFROST_API_KEY=your-key-here
# optional override:
# SUBFROST_RPC=https://mainnet.subfrost.io/v4/jsonrpcThe key is sent as the x-subfrost-api-key header (never in a URL) and never
leaves your machine except as that outbound header. .env is gitignored.
Connect your MCP client
Claude Code
claude mcp add --scope local --transport stdio aries \
-e SUBFROST_API_KEY=YOUR_KEY \
-- node /absolute/path/to/alkanes-aries/dist/index.jsVerify with claude mcp list, then /mcp in a session. (-- separates Claude's
flags from the launch command; keep -e KEY=value right before -- ā it's
variadic and will otherwise swallow the server name.)
Claude Desktop / Cursor (any client that takes a JSON server config)
{
"mcpServers": {
"aries": {
"command": "node",
"args": ["/absolute/path/to/alkanes-aries/dist/index.js"],
"env": { "SUBFROST_API_KEY": "your-key-here" }
}
}
}That's it ā your assistant now has all 21 Aries tools.
Safety ā read-only by design
Aries is analytics only. It never signs, broadcasts, or touches wallets or keys:
The
aries_rpcpassthrough is allowlisted to read methods and explicitly blocks broadcast / spend / admin calls.Scaffolds and constants are emitted for you to run in your own
alkanesCLI, where you hold the keys.The local incident loop writes only to your machine and sanitizes secrets, keys, and paths out of any report.
Your keys stay yours. Aries only reads and advises.
Configuration
Var | Purpose |
| Required ā auth for the live chain-data tools. |
| Optional gateway overrides (default to mainnet JSON-RPC / REST). |
| Optional path for your local incident store (default |
Logs go to stderr only ā stdout is the MCP protocol channel. The doc index
is built from corpus/ at startup.
Good to know
Alkane ids are
{block, tx}/block:tx. frBTC =32:0, DIESEL (genesis) =2:0. Protocol tag is always1.Read contract state with
aries_simulate: the opcode goes ininputs(e.g.[103]), notdata.Orbitals (Alkanes NFTs) are a
Tokenwith total supply 1 + opcode1000= media; read them witharies_oracle_read, scaffold one witharies_scaffold orbital.Extend the corpus by editing
corpus/or adding URLs toscripts/ingest.ts(HTML cleaned via turndown + jsdom; raw.md/.rstaken verbatim).
Links
š Hosted, continuously-learning Aries: aries.bragi.build
š Model Context Protocol: modelcontextprotocol.io
š Subfrost API keys: api.subfrost.io
License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bitbragi/alkanes-aries'
If you have feedback or need assistance with the MCP directory API, please join our Discord server