MANNA
OfficialClick on "Deploy 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., "@MANNAFind ALMA observations of the galaxy M87"
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.
MANNA
MANNA — MCP Architecture for NOIRLab and NRAO Archives.
An MCP server exposing IVOA-compliant astronomical archives (NOIRLab Astro Data Lab, NRAO/ALMA, CADC, ESO, Gaia, …) to LLM clients.
Naming: MANNA in prose (it's an acronym); lowercase
mannafor every identifier — the Python package,python -m manna, themanna:devimage tag, and the MCP client alias (mcp__manna__*). The one exception is the PyPI distribution,manna-mcp(baremannais admin-prohibited on PyPI).
Tools
Tool | Protocol | Description |
| — | List known archives with endpoint URLs and usage notes |
| — | Curated per-table schema facts (missing columns, enum values, spatial index hints) |
| Sesame | Resolve an object name (e.g. "M87", "Cygnus A") to RA/Dec coordinates |
| TAP | Submit sync or async ADQL queries; returns inline or promoted results |
| TAP | Poll an async job by ID |
| TAP | Return a completed async job's result URL + pyvo fetch recipe (client fetches the data) |
| TAP | Abort a running async job |
| RegTAP | Search the IVOA registry by keyword or service type |
| RegTAP | Describe a specific registry resource (columns, capabilities) |
| SCS | Simple Cone Search for legacy SCS-only archives |
| SIA 2.0 | Search for images by position and waveband (returns access URLs to fetch client-side) |
| SIA 2.0 / SCS | One-call facade: resolves a target name or coordinates, auto-selects an archive by service/waveband, then runs the SIA (image) or SCS (catalog) search — chains |
| TAP | Count observations/sources near a target in one call (resolve → select archive → |
| TAP | Survey which archives hold data for a target, with per-archive counts |
| TAP | Columns + curated enums/notes + a sample of rows for one table, in one call |
The recommended LLM workflow for a positional query:
vo_target_resolve— get RA/Dec for a named objectvo_archive_list— discover the archive and its endpointvo_schema_describe— get table-specific quirks before writing ADQLvo_registry_describe— live column introspectionvo_tap_query(mode=asyncfor data reads) — run the query
Related MCP server: aqc-mcp
Install
pip install manna-mcp # distribution name; the import + CLI are `manna`
manna # boots the server on http://localhost:8000
# or run without installing:
uvx manna-mcpAs an MCP server in a client
MANNA speaks stdio with --stdio, and streamable HTTP otherwise. For a stdio
client (Claude Desktop, Claude Code, IDE extensions):
claude mcp add manna -- uvx manna-mcp --stdioor, editing a client config by hand:
{"mcpServers": {"manna": {"command": "uvx", "args": ["manna-mcp", "--stdio"]}}}The first launch resolves astropy and pyvo, which is a large download; run
uvx manna-mcp --stdio once in a terminal before wiring it into a client whose
startup timeout is short.
Quickstart
uv sync
uv run pytest --record-mode=none # 657 tests, offline replay
uv run python -m manna # server on http://localhost:8000Smoke test with MCP Inspector:
npx -y @modelcontextprotocol/inspector --cli http://localhost:8000/mcp --method tools/listDevelopment
uv sync # install runtime + dev deps
uv run pre-commit install # enable git pre-commit hooks (once per clone)
uv run ruff check . # lint
uv run ruff format . # format
uv run pyright # type check (src/, basic mode)
uv run pre-commit run --all-files # run every hook over the whole treePre-commit runs ruff (lint + format), file-hygiene checks, and pyright on each commit; the full test suite runs in CI, not at commit time.
Branch flow (see CLAUDE.md for detail): feature branches <initials>/<name>
branch off dev and PR into dev; dev is promoted to main via PR. main
is protected — it only advances through PRs with passing CI.
Configuration
All settings are optional — defaults work for local dev. Set via environment variables prefixed MANNA_ or in a .env file:
Variable | Default | Description |
|
| HTTP listen port |
|
| Bind address |
|
|
|
|
| Timeout for sync TAP queries |
| (unset) | Comma-separated hostnames the server may fetch (exact or subdomain match). Unset ⇒ any public host; private/loopback/link-local targets are refused regardless |
| (unset) | Comma-separated archive short_names to activate. Unset/empty ⇒ all archives physically present in |
|
| Max rows in an inline result before it's routed to an async job (TAP) or truncated (cone/SIA) |
|
| Max bytes in an inline result before the same promotion/truncation applies (48 KiB) |
|
| Above this, |
See .env.example for a template.
Docker
docker build -t manna:dev .
docker run -p 8000:8000 manna:devForking for a specific deployment
This repo is the multi-archive base. Each archive is one self-contained file — its endpoints, usage notes, and per-table schemas all live in src/manna/archives/<short_name>.py. Shape which archives make curated claims two ways:
Physical — delete the unwanted
src/manna/archives/<short_name>.pyfiles. Discovery picks up whatever remains; no other file needs touching.Runtime — set
MANNA_ARCHIVES=datalab,alma(comma-separated short_names) to narrow a shared image without deleting files. Unset/empty ⇒ every archive active.
A dropped or deselected archive loses only the server's curated claims about it — never its reachability. It's still reachable via vo_registry_search.
Refreshing recorded cassettes
Tests replay archive HTTP traffic from YAML cassettes in tests/<area>/cassettes/. To refresh a stale cassette:
# requires network access to the archive endpoint
rm tests/<area>/cassettes/<test_module>/<test_name>.yaml
uv run pytest tests/<area>/<test_module>.py::<test_name> --record-mode=onceInspect the cassette diff before committing — large changes in the VOTable namespace URI or response headers may indicate an upstream breaking change.
Docs
docs/archives-spec.md— how per-archive knowledge modules work, and how to author one
Deployment configurations are maintained in a separate repository.
This server cannot be deployed
Maintenance
Related MCP Connectors
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
An MCP server that provides an API to LLMs to manage their JumpCloud resources.
MCP server for progressive tool usage at any scale (see https://klavis.ai)
Related MCP Servers
- AlicenseAqualityDmaintenanceA local MCP server for SkyPortal and Fritz that exposes astronomical transient data (photometry, spectra, classifications, observability) as tools for AI coding assistants.23BSD 3-Clause
- AlicenseBqualityDmaintenanceMCP server that provides tools to query 17+ astronomical databases (e.g., SIMBAD, VizieR, Gaia) via HTTP/TAP APIs, enabling AI applications to access astronomical data through natural language.239 npm2BSD 3-Clause

Rastro MCPofficial
AlicenseNot gradedqualityCmaintenanceMCP server for Rastro catalog operations, exposing catalog, service, execution, and local visualization tools for use with Claude, Codex, or any MCP-compatible client.MIT- AlicenseAqualityBmaintenanceA local, open-source MCP server that wraps astronomy data services (SIMBAD, JPL Horizons, VizieR, etc.) behind a conversational interface, enabling AI assistants to answer astronomy questions with real, typed, and provenance-tracked data.13MIT