@pipeworx/noirlab-datalab
MCP serverEverything elseNOIRLab Astro Data Lab, datalab.noirlab.edu.
Available today. Use it from your connected AI after setup.
No other account needed.
Add ahel to your AI once: Claude, ChatGPT, Cursor, Claude Code or Codex. Then ask it to use this.
Then ask your AI: use @pipeworx/noirlab-datalab
Install @pipeworx/noirlab-datalab
The server’s own address, for the clients that take one directly. Or connect ahel onceand every client you use reads it from one address, with the account kept on ahel rather than in each client’s config.
Claude Code
claude mcp add --transport http --scope user pipeworx-noirlab-datalab 'https://gateway.pipeworx.io/noirlab-datalab/mcp'Run it once in your project, then open /mcp to approve any sign-in the server asks for.
Claude Desktop
https://gateway.pipeworx.io/noirlab-datalab/mcpAdd a custom connector in Settings, paste this address, and approve the sign-in.
Cursor
cursor://anysphere.cursor-deeplink/mcp/install?name=pipeworx-noirlab-datalab&config=eyJ1cmwiOiJodHRwczovL2dhdGV3YXkucGlwZXdvcnguaW8vbm9pcmxhYi1kYXRhbGFiL21jcCJ9Open the link and Cursor adds the server at that address.
ChatGPT
https://gateway.pipeworx.io/noirlab-datalab/mcpIn Settings, enable Developer mode, create an MCP app, and paste this address. Your plan and workspace must allow custom apps.
Codex
codex mcp add pipeworx-noirlab-datalab --url 'https://gateway.pipeworx.io/noirlab-datalab/mcp'Run it once, then sign in with codex mcp login pipeworx-noirlab-datalab if the server asks for an account.
From the project's README
As published by pipeworx-io/mcp-noirlab-datalab in README.md.
NSF NOIRLab's Astro Data Lab — the DECam, Mayall and Blanco survey catalogues (Legacy Surveys/DECaLS, DES, DELVE, DECaPS, SMASH, NSC) alongside mirrored all-sky catalogues (Gaia DR3, AllWISE, CatWISE, 2MASS, SDSS, DESI), queryable as database tables. Around 130 schemas and tens of billions of rows.
Part of Pipeworx — an MCP gateway connecting AI agents to 1679+ live data sources.
Tools
datalab_tables(schema?, table?, limit?)— list the survey data releases, one release's tables, or one table's columns. Call it first: table names are survey-specific and a guessed name is a query error, not an empty result.datalab_query(sql, limit?)— run a read-only ADQLSELECT. ATOP nis injected when you omit one, so a bare query cannot scan a billion-row table unbounded.datalab_cone_search(table, ra, dec, radius?, columns?, limit?)— sources within a radius of a sky position, nearest first, with exact angular separation in degrees.
Auth
Keyless — but only through the IVOA TAP endpoint. See the first trap below.
Data sources
- https://datalab.noirlab.edu/tap/sync —
REQUEST=doQuery&LANG=ADQL&FORMAT=csv&QUERY=…. Anonymous, and the only door this pack uses.
Traps
/query/query?sql=is NOT anonymous, despite being the documented front door. It is what thedatalabPython client uses and what the docs lead with, but without a login it answers401 The provided security token is invalid— and the widely-quotedX-DL-AuthToken: anonymous.0.0.anon_accessanswers HTTP 200 with the bodyError in query(). Try checking that you are logged in.A 200 carrying a failure is the worst shape a failure can take, and it is why this pack speaks TAP only. Measured 2026-09-17.- TAP reports every error as HTTP 200. Syntax errors, unknown tables, timeouts: all come back
200 with a VOTable whose single
INFOelement carriesQUERY_STATUS="ERROR". Read as data that is an empty result set. Every response is checked for that element before it is parsed. - ADQL geometry is not implemented, and neither is Q3C.
CONTAINS(POINT('ICRS',ra,dec), CIRCLE('ICRS',…))parses and is handed to PostgreSQL verbatim, which answersfunction circle(numeric, numeric, numeric) does not exist. The Q3C functions the backend actually has (q3c_radial_query) are rejected by the ADQL parser one layer up. So both obvious cone-search spellings fail.datalab_cone_searchbuilds the search from trigonometry both layers accept: an indexable RA/Dec box (RA widened by1/cos(dec), wrapping at 0h) to narrow the scan, then an exact great-circle distance to trim the box corners off and order by true separation. - Row limits are
SELECT TOP n, notLIMIT n. ADQL, not PostgreSQL. - Zero rows is usually footprint, not absence. The DECam surveys cover the southern sky and the
Galactic plane selectively, so a northern target legitimately returns nothing from
ls_dr10ordes_dr2. The zero-result note says to re-check againstgaia_dr3.gaia_source, which is all-sky.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"noirlab-datalab": {
"url": "https://gateway.pipeworx.io/noirlab-datalab/mcp"
}
}
}
What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/noirlab-datalab/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1679+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
No MCP client? Call it over HTTP
curl -X POST https://gateway.pipeworx.io/v1/tools/datalab_query \
-H 'Content-Type: application/json' \
-d '{"sql":"SELECT ra, dec, phot_g_mean_mag FROM gaia_dr3.gaia_source WHERE phot_g_mean_mag < 6","limit":5}'
No account needed for the first calls. Inspect any tool: GET https://gateway.pipeworx.io/v1/tools/datalab_query. Find one: POST https://gateway.pipeworx.io/v1/tools/search_packs with {"query":"..."}.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"noirlab-datalab": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-noirlab-datalab"]
}
}
}
Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-noirlab-datalab
It speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Noirlab Datalab data" })
The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
Advanced
- Delivery
- noirlab-datalab MCP server → your ahel connector (mcp.ahel.ai) → your AI.
- Catalog kind
- mcp-server
- Key
io-github-pipeworx-io-noirlab-datalab- Source
- github.com/pipeworx-io/mcp-noirlab-datalab
- Hosted endpoint
https://gateway.pipeworx.io/noirlab-datalab/mcp