@Cyanheads/Uniprot Server
БесплатноНе проверенSearch UniProtKB by protein function, fetch curated records, map IDs across databases, and pull reference proteomes, taxonomy, and sequences via MCP. Supports b
Описание
Search UniProtKB by protein function, fetch curated records, map IDs across databases, and pull reference proteomes, taxonomy, and sequences via MCP. Supports both STDIO and Streamable HTTP transports.
README
@cyanheads/uniprot-mcp-server
Search UniProtKB by protein function, fetch curated records, map IDs across databases, and pull reference proteomes, taxonomy, and sequences via MCP. STDIO or Streamable HTTP.
Public Hosted Server: https://uniprot.caseyjhand.com/mcp
Overview
Protein research over UniProtKB (rest.uniprot.org). Search by function or gene, fetch curated records, translate identifiers across sibling databases, and pull reference proteomes, taxonomy, and sequences from any MCP client. Runs as a stdio process, a local Streamable HTTP server, or the public hosted endpoint above.
Tools
| Tool | Description |
|---|---|
uniprot_search_proteins |
Search UniProtKB by plain text or a Lucene field query, with the reviewed (Swiss-Prot) filter foregrounded and optional server-side facet counts. Cursor-paginated. The discovery entry point. |
uniprot_get_entry |
Fetch full curated entries by accession in one batch (up to 20) — function, catalytic activity, disease, variants, isoforms, GO terms, cross-references. Partial-success output; an oversized record returns a section outline. |
uniprot_map_ids |
Translate identifiers across databases via UniProt's async ID-mapping service — gene names, Ensembl, RefSeq, ChEMBL, PDB, GeneID ↔ UniProtKB accessions. Polls within a budget; running jobs return a ticket and completed pages return a continuation. |
uniprot_get_proteome |
Fetch a reference proteome by UPID or NCBI taxon ID — protein count, BUSCO completeness, genome assembly inline, plus an opt-in capped page of the proteins. |
uniprot_get_taxonomy |
Resolve a taxonomy record by NCBI taxon ID or scientific name — name, rank, parent, full lineage, and optionally the immediate children. |
uniprot_get_sequence |
Fetch the canonical amino-acid sequence (FASTA) for an accession, with length and parsed header — and optionally the isoform sequences. The cheap sequence-only path. |
Resources
| Resource | Description |
|---|---|
uniprot://entry/{accession} |
A curated UniProtKB entry by accession — the resource mirror of uniprot_get_entry for a single accession. |
uniprot://taxonomy/{taxonId} |
A taxonomy record by NCBI taxon ID — name, rank, parent, full lineage. The mirror of uniprot_get_taxonomy by ID. |
All resource data is also reachable via tools — tool-only clients lose nothing. UniProtKB is far too large to enumerate, so there is no resource list(); discovery is uniprot_search_proteins's job.
Prompts
| Prompt | Description |
|---|---|
uniprot_protein_dossier |
Guided protein-research workflow — resolve an identifier, fetch the curated entry, pull disease and variants, and surface cross-references for structure, citations, and bioactivity. |
Capability reference
uniprot_search_proteins tool
text_searchfor plain language (the 80% case) orqueryfor full Lucene field syntax (gene,organism_id,keyword,go,reviewed,protein_name,family,length,existence,accession) — exactly onerevieweddefaults totrue(Swiss-Prot only) so the agent isn't drowned in TrEMBL predictions; setfalseto include themorganism_idconvenience filter ANDed onto the query- Optional
facetsfor server-side count breakdowns (e.g.reviewed,model_organism) - Forward cursor pagination (UniProtKB has no offset paging);
totalResultsand the effective query echoed back - Every hit carries
reviewed,annotationScore, andproteinExistenceso curation quality is weighable
uniprot_get_entry tool
- Batch up to 20 accessions in one round trip
- Sectioned record: function, catalytic activity, cofactors, subcellular location, disease, PTMs, natural variants, isoforms, domains, GO terms, keywords, cross-references
- Partial-success output — resolved entries in
succeeded[], unknown/withdrawn ones infailed[]; the whole batch never aborts on one bad accession fieldstrims the upstream projection; identity and provenance fields are always retained- A single oversized record returns
kind: "outline"(a section listing) instead of overflowing context — re-call the same accession withsections: [...]to pull only what's needed - Accessions come from
uniprot_search_proteinsoruniprot_map_ids; strip any-Nisoform suffix first
uniprot_map_ids tool
from_db/to_dbare validated enums (e.g.Gene_Name,Ensembl,RefSeq_Protein,ChEMBL,PDB,GeneID,UniProtKB_AC-ID) so an unsupported pair fails before the upstream call- Target
UniProtKB-Swiss-Protfor reviewed accessions only (the usual intent), orUniProtKB/UniProtKB_AC-IDto include unreviewed TrEMBL - The job runs asynchronously; the tool submits it and polls within a budget. A running job returns
status: "running"with a ticket — pass that ticket alone to poll the same job - A completed call returns
status: "finished"with one upstream page. Ifcontinuationis present, pass it alone to fetch the next completed page without polling or re-submitting; its absence marks the terminal page - Pair a gene-symbol
from_dbwithtax_idto disambiguate species unmappedIdsis populated only from UniProt'sfailedIds, so identifiers UniProt normalizes in successful result rows are not misclassified as failures
uniprot_get_proteome tool
- Provide exactly one of
upid(e.g.UP000005640) ortaxon_id— providing both or neither fails validation - Metadata inline: proteome type, total protein count, BUSCO completeness (score, complete/fragmented/missing counts, lineage dataset), genome assembly accession
- The protein set is opt-in via
include_proteins(it is large — human is ~147,506) and returns a capped page with a forward cursor and truncation disclosure - Narrow the protein list with the
queryfilter (UniProtKB Lucene syntax) for a subset - Resolve an organism name to a taxon ID first with
uniprot_get_taxonomy
uniprot_get_taxonomy tool
- Provide exactly one of
taxon_id(NCBI numeric ID) orname(scientific name) — both or neither fails validation - Returns scientific and common name, mnemonic, rank, parent, and the full lineage (root → near ancestor)
include_childrenfetches the immediate child taxa via a follow-up search (not inline on the record)- Turns an organism name into the taxon ID that
uniprot_search_proteins(organism_id) anduniprot_get_proteome(taxon_id) expect
uniprot_get_sequence tool
- Returns the canonical sequence with its length and parsed FASTA header
include_isoformsalso returns the alternatively-spliced isoform sequences- Accessions come from
uniprot_search_proteinsoruniprot_map_ids; strip any-Nisoform suffix first
uniprot://entry/{accession} resource
- Same record as
uniprot_get_entryfor a single accession, addressed by URI instead of a tool call - An annotation-heavy entry over the outline budget returns a bounded identity summary plus a section outline instead of the full record — fetch specific sections via the
uniprot_get_entrytool (sections: [...]); the resource URI itself takes no sections parameter - The overflow summary always keeps identity fields — accession, entry name, protein name, genes, organism, length, reviewed status, annotation score, protein existence
uniprot://taxonomy/{taxonId} resource
- Addressed by NCBI taxon ID, e.g.
uniprot://taxonomy/9606for human - Returns scientific and common name, mnemonic, rank, parent, and full lineage — same shape as
uniprot_get_taxonomywithoutinclude_children - Tool-only clients reach the same data via
uniprot_get_taxonomy
uniprot_protein_dossier prompt
- Arguments:
identifierrequired (gene name, accession, or protein name);organismoptional to disambiguate - Five-step workflow embedded in the generated message: resolve identifier → fetch entry → summarize function/localization/provenance → pull disease & variants → surface cross-references for structure (PDB), bioactivity (ChEMBL), and citations (PubMed)
- Returns a single user-role message carrying the full instructions — no separate assistant framing message
Features
Built on @cyanheads/mcp-ts-core: stdio and Streamable HTTP transports, pluggable auth (none / jwt / oauth), swappable storage (in-memory, filesystem, Supabase, Cloudflare KV/R2/D1), structured logging with optional OpenTelemetry tracing.
UniProt-specific:
- Keyless — UniProt REST requires no API key; works against any
rest.uniprot.org-compatible base (overrideUNIPROT_BASE_URLfor a private mirror) - One thin
fetchclient over all four REST collections (UniProtKB, ID Mapping, Proteomes, Taxonomy) with retry/backoff and HTML-error-page detection - Batch entry fetch — N accessions in one round trip, cross-referenced against the request to flag any missing
- Async ID-mapping run → poll bounded by a wall-clock budget, with a running-job ticket and separately paginated completed results
Agent-friendly output:
- Provenance is data, not decoration —
reviewed,annotationScore,proteinExistence, and per-field PubMed/ECO evidence ship on every record so the agent can weigh manual vs. predicted annotation - Graceful partial failure —
uniprot_get_entryreturns per-accessionsucceeded[]/failed[]rows instead of aborting the batch - Discriminated output contracts —
uniprot_get_entryreturnskind: "full" | "outline", whileuniprot_map_idsseparates a running-jobticketfrom a finished-pagecontinuation; callers branch on data, not string parsing - Sparsity preserved — absent upstream fields stay absent, never fabricated (most curated sections are legitimately missing on TrEMBL entries)
Getting started
Public Hosted Instance
A public instance is available at https://uniprot.caseyjhand.com/mcp — no installation required. Point any MCP client at it via Streamable HTTP:
{
"mcpServers": {
"uniprot-mcp-server": {
"type": "streamable-http",
"url": "https://uniprot.caseyjhand.com/mcp"
}
}
}
Self-Hosted / Local
Add the following to your MCP client configuration file. UniProt REST is keyless — no API key required.
{
"mcpServers": {
"uniprot-mcp-server": {
"type": "stdio",
"command": "bunx",
"args": ["@cyanheads/uniprot-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
Or with npx (no Bun required):
{
"mcpServers": {
"uniprot-mcp-server": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@cyanheads/uniprot-mcp-server@latest"],
"env": {
"MCP_TRANSPORT_TYPE": "stdio",
"MCP_LOG_LEVEL": "info"
}
}
}
}
Or with Docker:
{
"mcpServers": {
"uniprot-mcp-server": {
"type": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "MCP_TRANSPORT_TYPE=stdio", "ghcr.io/cyanheads/uniprot-mcp-server:latest"]
}
}
}
For Streamable HTTP, set the transport and start the server:
MCP_TRANSPORT_TYPE=http MCP_HTTP_PORT=3010 bun run start:http
# Server listens at http://localhost:3010/mcp
Prerequisites
- Bun v1.3.0 or higher (or Node.js v24+).
- No API key — UniProt REST is keyless and open. Data is UniProt, CC BY 4.0.
Installation
- Clone the repository:
git clone https://github.com/cyanheads/uniprot-mcp-server.git
- Navigate into the directory:
cd uniprot-mcp-server
- Install dependencies:
bun install
Configuration
All configuration is validated at startup via Zod schemas in src/config/server-config.ts. UniProt REST is keyless, so every server-specific variable below is an optional override.
| Variable | Description | Default |
|---|---|---|
UNIPROT_BASE_URL |
UniProt REST base URL. Override for a private mirror or testing. | https://rest.uniprot.org |
UNIPROT_TIMEOUT_MS |
Per-request HTTP timeout in ms. | 30000 |
UNIPROT_ID_MAPPING_BUDGET_MS |
Wall-clock budget for the inline ID-mapping poll loop before returning a resumable ticket. Must be less than UNIPROT_TIMEOUT_MS. |
8000 |
UNIPROT_DEFAULT_PAGE_SIZE |
Default page size for search and proteome protein listing when the caller leaves it unset. | 25 |
MCP_TRANSPORT_TYPE |
Transport: stdio or http. |
stdio |
MCP_HTTP_PORT |
Port for HTTP server. | 3010 |
MCP_AUTH_MODE |
Auth mode: none, jwt, or oauth. |
none |
MCP_SESSION_MODE |
HTTP session posture: auto, stateful, or stateless. The server declares stateless in code — no tool holds per-session state — so set this only to opt back into a session store. |
stateless |
MCP_LOG_LEVEL |
Log level (RFC 5424). | info |
LOGS_DIR |
Directory for log files (Node.js only). | <project-root>/logs |
STORAGE_PROVIDER_TYPE |
Storage backend. | in-memory |
OTEL_ENABLED |
Enable OpenTelemetry instrumentation (spans, metrics, completion logs). | false |
See .env.example for the full list of optional overrides.
Running the server
Local development
Build and run:
# One-time build bun run rebuild # Run the built server bun run start:stdio # or bun run start:httpRun checks and tests:
bun run devcheck # Lint, format, typecheck, security bun run test # Vitest test suite bun run lint:mcp # Validate MCP definitions against spec
Docker
docker build -t uniprot-mcp-server .
docker run --rm -e MCP_TRANSPORT_TYPE=stdio ghcr.io/cyanheads/uniprot-mcp-server:latest
The Dockerfile defaults to HTTP transport, stateless session mode, and logs to /var/log/uniprot-mcp-server. OpenTelemetry peer dependencies are installed by default — build with --build-arg OTEL_ENABLED=false to omit them.
Project structure
| Directory | Purpose |
|---|---|
src/index.ts |
createApp() entry point — registers tools/resources/prompts and inits the UniProt service. |
src/config |
Server-specific environment variable parsing and validation with Zod. |
src/mcp-server/tools |
Tool definitions (*.tool.ts). Six tools over UniProtKB, ID mapping, proteomes, taxonomy, and sequences. |
src/mcp-server/resources |
Resource definitions (*.resource.ts). Entry and taxonomy by-ID mirrors. |
src/mcp-server/prompts |
Prompt definitions (*.prompt.ts). The protein-dossier workflow prompt. |
src/services/uniprot |
The rest.uniprot.org REST client — search, batch entries, ID mapping, proteomes, taxonomy, FASTA — plus normalized domain types. |
tests/ |
Unit and integration tests mirroring src/. |
Development guide
See CLAUDE.md (and the byte-identical AGENTS.md) for development guidelines and architectural rules. The short version:
- Handlers throw, framework catches — no
try/catchin tool logic - Use
ctx.logfor request-scoped logging,ctx.statefor tenant-scoped storage - Register new tools and resources in the
createApp()arrays - Wrap the UniProt API: validate raw → normalize to domain type → return the output schema; never fabricate missing fields
Contributing
Issues are welcome. Run checks and tests before submitting:
bun run devcheck
bun run test
License
Apache-2.0 — see LICENSE for details.
Установка @Cyanheads/Uniprot Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/cyanheads/uniprot-mcp-serverFAQ
@Cyanheads/Uniprot Server MCP бесплатный?
Да, @Cyanheads/Uniprot Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для @Cyanheads/Uniprot Server?
Нет, @Cyanheads/Uniprot Server работает без API-ключей и переменных окружения.
@Cyanheads/Uniprot Server — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить @Cyanheads/Uniprot Server в Claude Desktop, Claude Code или Cursor?
Открой @Cyanheads/Uniprot Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectAmap Maps Mcp Server
MCP server for using the AMap Maps API
автор: duxiaohuiSupabase
Database, auth and storage
автор: SupabaseEverything
Reference / test server with prompts, resources, and tools.
Git
Tools to read, search, and manipulate Git repositories.
Sequential Thinking
Dynamic and reflective problem-solving through thought sequences.
Time
Time and timezone conversion capabilities.
Compare @Cyanheads/Uniprot Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
