UCSC Genome Browser REST API — reference genome assemblies for ~250 species, the annotation tracks on each (genes, variants, conservation, regulation), the rows of any track over a region, and raw DNA sequence. Keyless.
- ✓Open-source license (MIT)
- ✓Actively maintained (<30d)
- ✓Clear description
- ✓Topics declared
- ✓Documented (README)
claude mcp add mcp-ucsc-genome -- npx -y @pipeworx/mcp-ucsc-genome{
"mcpServers": {
"mcp-ucsc-genome": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-ucsc-genome"]
}
}
}MCP Servers overview
# @pipeworx/ucsc-genome
Reference genome assemblies from the UCSC Genome Browser — which builds exist for a species,
which annotation tracks sit on each build, the actual rows of any track over a genomic interval,
and raw reference DNA.
Part of [Pipeworx](https://pipeworx.io) — an MCP gateway connecting AI agents to 1684+ live data sources.
## Tools
- `ucsc_genomes(search?, limit?)` — every UCSC assembly (~238), with its assembly ID (`hg38`, `mm39`,
`danRer11`), organism, scientific name, source assembly and release description. This is where you
get the ID every other call keys on.
- `ucsc_tracks(genome, search?, limit?)` — annotation tracks on one assembly, with the INTERNAL track
name that `ucsc_track_data` wants. The browser UI shows labels, not names: "GENCODE V50" is track
`knownGene`, and there is no rule that maps one to the other.
- `ucsc_track_data(genome, track, chrom, start, end, maxItemsOutput?)` — the track's rows over an
interval: gene models with exon structure, ClinVar variants, repeats, whatever that track holds.
- `ucsc_sequence(genome, chrom, start, end, revComp?)` — reference DNA for an interval, with GC
fraction and an N count.
## Auth
Keyless. No registration, no rate-limit headers observed. UCSC asks heavy users to mirror or use a
local install rather than hammer the public endpoint, so keep interval widths sane.
## Data sources
- <https://api.genome.ucsc.edu/list/ucscGenomes> — assembly catalogue.
- <https://api.genome.ucsc.edu/list/tracks?genome=hg38> — track catalogue for one assembly.
- <https://api.genome.ucsc.edu/getData/track> — track rows over an interval.
- <https://api.genome.ucsc.edu/getData/sequence> — reference DNA.
- Docs: <https://genome.ucsc.edu/goldenPath/help/api.html>
## Traps
**`genome` is required on every coordinate tool and there is no default.** hg19 (GRCh37) and hg38
(GRCh38) are different coordinate systems for the same genome, and every position is valid in both —
so a wrong build never errors, it returns confident annotations for a different locus. BRCA1 sits at
chr17:41,196,311-41,277,500 in hg19 and chr17:43,044,295-43,170,245 in hg38. Anything older than
~2018 (published tables, clinical spreadsheets, most dbSNP dumps) is hg19.
**Coordinates are 0-based half-open; the Genome Browser UI is 1-based inclusive.** A position copied
out of the browser location box is one too high at the start.
**Chromosomes need the `chr` prefix.** UCSC wants `chr17`; Ensembl/NCBI style bare `17` is rejected.
**Track search ranks by where the match landed, on purpose.** hg38 carries ~24,000 tracks (most of
them ENCODE subtracks) and the longLabels are prose, so a plain substring search for "gencode"
matched 13,427 of them — and ~13,000 of those were false positives, because
`wgEncodeBroadHistone…` lowercases to a string that literally contains "gencode". The ranking scores
an internal-name hit above a shortLabel hit above prose, and treats a camelCase transition as a word
boundary, which is what separates `nmdEscGencode` from `wgEncode…`. Without it the answer
(`knownGene`) was on page 2,700.
**Composite tracks nest their subtracks one level down** inside the parent object. `ucsc_tracks`
flattens them, otherwise a search for "clinvar" on hg38 misses every subtrack of the ClinVar
container and reads as "UCSC does not have ClinVar".
**`getData/track` keys its row array on the track name — usually.** On some composites it keys on a
subtrack instead, so the pack falls back to "the first array in the response" rather than reporting
an empty result that is really a naming mismatch.
**A bad assembly or track returns HTTP 400 with a useful `error` string in the JSON body** — the pack
surfaces that string, because "hg19 is not a valid track for genome hg38" is the whole diagnosis.
## Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
```json
{
"mcpServers": {
"ucsc-genome": {
"url": "https://gateway.pipeworx.io/ucsc-genome/mcp"
}
}
}
```
### What this endpoint actually serves
`tools/list` at `https://gateway.pipeworx.io/ucsc-genome/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:
```json
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
```
Both URLs reach the same gateway and the same 1684+ 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
```bash
curl -X POST https://gateway.pipeworx.io/v1/tools/ucsc_genomes \
-H 'Content-Type: application/json' \
-d '{"search":"human"}'
```
No account needed for the first calls. Inspect any tool: `GET https://gateway.pipeworx.io/v1/tools/ucsc_genomes`. 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:
```json
{
"mcpServers": {
"ucsc-genome": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-ucsc-genome"]
}
}
}
```
Or run it directly to confirm it starts:
```bash
npx -y @pipeworx/mcp-ucsc-genome
```
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 Ucsc Genome data" })
```
The gateway picks the right tool and fills the arguments automatically.
## More
- [Docs and guides](https://pipeworx.io/docs)
- [pipeworx.io](https://pipeworx.io)
## License
MIT
What people ask about mcp-ucsc-genome
What is pipeworx-io/mcp-ucsc-genome?
+
pipeworx-io/mcp-ucsc-genome is mcp servers for the Claude AI ecosystem. UCSC Genome Browser REST API — reference genome assemblies for ~250 species, the annotation tracks on each (genes, variants, conservation, regulation), the rows of any track over a region, and raw DNA sequence. Keyless. It has 0 GitHub stars and its last recorded update is dated 2026-09-26.
How do I install mcp-ucsc-genome?
+
You can install mcp-ucsc-genome by cloning the repository (https://github.com/pipeworx-io/mcp-ucsc-genome) or following the README instructions on GitHub. ClaudeWave also provides quick install blocks on this page.
Is pipeworx-io/mcp-ucsc-genome safe to use?
+
Our security agent has analyzed pipeworx-io/mcp-ucsc-genome and assigned a Trust Score of 95/100 (tier: Verified). See the full breakdown of passed checks and flags on this page.
Who maintains pipeworx-io/mcp-ucsc-genome?
+
pipeworx-io/mcp-ucsc-genome is maintained by pipeworx-io. The last recorded GitHub activity is dated 2026-09-26, with 0 open issues.
Are there alternatives to mcp-ucsc-genome?
+
Yes. On ClaudeWave you can browse similar mcp servers at /categories/mcp, sorted by popularity or recent activity.
Deploy mcp-ucsc-genome to your cloud
Ship this repo to production in minutes. Each platform spins up its own environment with editable env vars.
Maintain this repo? Add a badge to your README
Drop the badge into your GitHub README to show it's tracked on ClaudeWave. Each badge links back to this page and reflects the live Trust Score.
[](https://claudewave.com/repo/pipeworx-io-mcp-ucsc-genome)<a href="https://claudewave.com/repo/pipeworx-io-mcp-ucsc-genome"><img src="https://claudewave.com/api/badge/pipeworx-io-mcp-ucsc-genome" alt="Featured on ClaudeWave: pipeworx-io/mcp-ucsc-genome" width="320" height="64" /></a>More MCP Servers
Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.
User-friendly AI Interface (Supports Ollama, OpenAI API, ...)
An open-source AI agent that brings the power of Gemini directly into your terminal.
Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface
🕷️ An adaptive Web Scraping framework that handles everything from a single request to a full-scale crawl! Don't be shy, join here: https://discord.gg/EMgGbDceNQ and follow here for daily tips and tricks: https://x.com/Scrapling_dev
The fastest path to AI-powered full stack observability, even for lean teams.