This UniProt MCP server provides comprehensive access to the UniProt protein database through the Model Context Protocol, offering 26 specialized bioinformatics tools for protein research, genomics analysis, and structural biology investigations.
git clone <repository-url>
cd uniprot-server
npm install
npm run build
docker build -t uniprot-mcp-server .
docker run -i uniprot-mcp-server
For MCP client integration:
{
"mcpServers": {
"uniprot": {
"command": "docker",
"args": ["run", "-i", "uniprot-mcp-server"],
"env": {}
}
}
}
Create a docker-compose.yml
file:
version: "3.8"
services:
uniprot-mcp:
build: .
image: uniprot-mcp-server
stdin_open: true
tty: true
Run with:
docker-compose up
Run the server via stdio:
npm start
Add the server to your MCP client configuration:
{
"mcpServers": {
"uniprot": {
"command": "node",
"args": ["/path/to/uniprot-server/build/index.js"],
"env": {}
}
}
}
Search the UniProt database for proteins.
Parameters:
query
(required): Search query (protein name, keyword)organism
(optional): Organism name or taxonomy IDsize
(optional): Number of results (1-500, default: 25)format
(optional): Output format (json, tsv, fasta, xml)Example:
{
"query": "insulin",
"organism": "human",
"size": 5
}
Get detailed information for a specific protein.
Parameters:
accession
(required): UniProt accession numberformat
(optional): Output formatExample:
{
"accession": "P01308",
"format": "json"
}
Search for proteins by gene name or symbol.
Parameters:
gene
(required): Gene name or symbolorganism
(optional): Organism name or taxonomy IDsize
(optional): Number of results (1-500, default: 25)Example:
{
"gene": "BRCA1",
"organism": "human"
}
Get the amino acid sequence for a protein.
Parameters:
accession
(required): UniProt accession numberformat
(optional): Output format (fasta, json)Example:
{
"accession": "P01308",
"format": "fasta"
}
Get functional features and domains for a protein.
Parameters:
accession
(required): UniProt accession numberExample:
{
"accession": "P01308"
}
Direct access to UniProt data through URI templates:
uniprot://protein/{accession}
uniprot://protein/P01308
uniprot://sequence/{accession}
uniprot://sequence/P01308
uniprot://search/{query}
uniprot://search/insulin
{
"tool": "search_proteins",
"arguments": {
"query": "insulin",
"organism": "human",
"size": 10
}
}
{
"tool": "get_protein_info",
"arguments": {
"accession": "P01308"
}
}
{
"tool": "search_by_gene",
"arguments": {
"gene": "BRCA1",
"organism": "human"
}
}
{
"tool": "get_protein_sequence",
"arguments": {
"accession": "P01308",
"format": "fasta"
}
}
{
"tool": "get_protein_features",
"arguments": {
"accession": "P01308"
}
}
This server integrates with the UniProt REST API. For more information:
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "uniprot" '{"command":"node","args":["/path/to/uniprot-server/build/index.js"],"env":[]}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"uniprot": {
"command": "node",
"args": [
"/path/to/uniprot-server/build/index.js"
],
"env": []
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"uniprot": {
"command": "node",
"args": [
"/path/to/uniprot-server/build/index.js"
],
"env": []
}
}
}
3. Restart Claude Desktop for the changes to take effect