A comprehensive Model Context Protocol (MCP) server providing advanced access to the UniProt protein database.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"uniprot": {
"env": {},
"args": [
"run",
"-i",
"uniprot-mcp-server"
],
"command": "docker"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A comprehensive Model Context Protocol (MCP) server providing advanced access to the UniProt protein database. This server offers 26 specialized bioinformatics tools enabling AI assistants and MCP clients to perform sophisticated protein research, comparative genomics, structural biology analysis, and systems biology investigations directly through UniProt's REST API.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
protein_informationComplete protein information for a UniProt accession
uniprot://protein/{accession}
protein_sequenceFASTA format protein sequence
uniprot://sequence/{accession}
search_resultsSearch results for proteins matching the query
uniprot://search/{query}
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in health
MCP server providing seamless access to FHIR APIs for AI tools and healthcare applications
MCP server for Withings health data — sleep, activity, heart, and body metrics.
Manage your Hevy workouts, routines, folders, and exercise templates. Create and update sessions faster, organize plans, and search exercises to build workouts quickly. Stay synced with changes so your training log is always up to date.
MCP server for the ClinicalTrials.gov v2 API. Search trials, retrieve study details and results, and match patients to eligible trials.
MCP Security Weekly
Get CVE alerts and security updates for Augmented Nature UniProt MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive Model Context Protocol (MCP) server providing advanced access to the UniProt protein database. This server offers 26 specialized bioinformatics tools enabling AI assistants and MCP clients to perform sophisticated protein research, comparative genomics, structural biology analysis, and systems biology investigations directly through UniProt's REST API.
Developed by Augmented Nature
git clone <repository-url>
cd uniprot-server
npm install
npm run build
Build the Docker image:
docker build -t uniprot-mcp-server .
Run the container:
docker run -i uniprot-mcp-server
For MCP client integration, you can use the container directly:
{
"mcpServers": {
"uniprot": {
"command": "docker",
"args": ["run", "-i", "uniprot-mcp-server"],
"env": {}
}
}
}
Create a docker-compose.yml for easier management:
version: "3.8"
services:
uniprot-mcp:
build: .
image: uniprot-mcp-server
stdin_open: true
tty: tru
... [View full README on GitHub](https://github.com/Augmented-Nature/Augmented-Nature-UniProt-MCP-Server#readme)