AURORA Agent

Install

Four ways in, all local. The server makes no network requests and collects no data on any of them.

Claude Desktop (.mcpb bundle)

Download aurora-agent.mcpb from the GitHub releases (v0.1.1) and double-click it, or add it via Settings → Extensions. The bundle ships with the reference fixtures; the “AURORA data root” setting can point at a full checkout.

The prebuilt bundle is Windows-only. On macOS or Linux, build from source (below) and register the binary with your MCP client directly.

Release integrity — the v0.1.1 bundle's SHA-256:

e987c396a01eb2ae812efa8226f6892fc3f70cb441102217476990816458f025

Claude Code (plugin marketplace)

The repository is itself a Claude Code plugin marketplace:

claude plugin marketplace add AURORA-NEURO/aurora-agent
claude plugin install aurora-agent@aurora

MCP registry

The server is listed on the official Model Context Protocol registry as io.github.MurariAmbati/aurora-agent (v0.1.1). Verify the listing directly:

curl "https://registry.modelcontextprotocol.io/v0.1/servers?search=aurora-agent"

The registry is metadata: tools that consume it (registry aggregators, editor integrations) can discover the server there, but installation still happens through one of the paths on this page.

Any MCP client (build from source)

The workspace builds offline against pinned dependencies:

git clone https://github.com/AURORA-NEURO/aurora-agent
cd aurora-agent
cargo build --release --offline

Then point any MCP client at the stdio server:

./target/release/bioprism-mcp --root .

The server speaks JSON-RPC 2.0 over newline-delimited stdio and follows the MCP lifecycle (initialize, then notifications/initialized, then tool calls). Paths are confined to --root; absolute paths, .., and symlink escapes are refused. 259 tools are exposed, from fiber_compile / fiber_refine / fiber_verify through the evaluation, oracle, safety, and operations surfaces.

CLI and HTTP gateway

The same build produces bioprism (a CLI with --json envelopes and a ten-exit-code retryability matrix — every failure code carries exactly one retry decision) and bioprism-api, a bounded local HTTP gateway for deployments that need a network boundary. The gateway binds to an address you choose, loopback by default, and calls no external services.

Research and developer infrastructure: it does not diagnose an individual, recommend treatment, triage care, enroll participants, or claim medical-device functionality.