Stellar build agent · live over MCP

Ask the raven.

It scouts the live Stellar ecosystem and the official docs, then brings your agent a synthesized, build-ready answer — over MCP, in any client you already use.

One endpoint. One token. Any MCP-capable agent.

tool · ask_stellar_raven
You ask in plain language. It comes back ready to ship.
claude · ask_stellar_raven
› How do I let a Soroban contract move a SAC-wrapped asset?
✦ raven out — reading Stellar docs · scanning the ecosystem
✓ synthesized · Soroban + SAC · 4 sources · grok-4.3
Wrap the classic asset as a Stellar Asset Contract, then call its token interface from your contract — authorize the move with require_auth, then transfer via the SAC client. Full snippet + auth notes below.
speaks to Claude Desktop/Claude Code/ Cursor/VS Code/ Anthropic API/any MCP client
Two ravens

Thought, and Memory.

Odin sent out two ravens — Huginn, thought, and Muninn, memory — to fly the world and report back. Stellar Raven is built the same way.

Live now ✦ Huginn · Thought
It reads everything.

Every question sends a raven across the whole Stellar surface — the official docs, live ecosystem sources, SDKs and standards — and it returns a synthesized, build-ready answer. Never a frozen snapshot of training data.

SorobandApps & SDKsAssets & SAC Chain dataStandards · SEPs/CAPsZK & privacy
H
In flight · soon ◐ Muninn · Memory
It remembers you.

Sign in and your raven keeps a memory that's yours alone — your chains, your stack, your conventions — isolated to your account and carried across every MCP client. Shape it, improve it, take it anywhere.

chain · testnetsdk · js-stellar-sdkfocus · Soroban + passkeys+ your own

Arriving with WorkOS accounts: personalized instructions, import/export, an agent that's truly yours.

M

Three steps

Summon it in a minute.

No SDK to install. If your agent speaks MCP, it already speaks Raven.

01

Summon your agent

Sign in with WorkOS — Google, GitHub, or email. The account is yours.

02

Take your token

Mint a raven_pat_… personal access token. Shown once, stored as a hash.

03

Point a client at it

Add the /mcp endpoint with your token as a Bearer header, then just ask.

Connect

Drop it in. Ask away.

A remote MCP server over Streamable HTTP. Long research runs stream their progress and finish durably — your client never hangs waiting.

POST https://raven.stellar.buzz/mcp
claude_desktop_config.json
// add Stellar Raven to any MCP client
{
  "mcpServers": {
    "stellar-raven": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://raven.stellar.buzz/mcp",
        "--header",
        "Authorization: Bearer raven_pat_…"
      ]
    }
  }
}