MCP Catalogs
Home

Augmented-Nature-UniProt-MCP-Server vs everything

Side-by-side comparison to help you pick between these two MCP servers.

Augmented-Nature-UniProt-MCP-Server
by Augmented-Nature
everything
by modelcontextprotocol
Stars★ 19★ 85,748
30d uses
Score4477
Official
Categories
DatabaseDeveloper ToolsKnowledge Graph
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last commit5 mo agothis month

Augmented-Nature-UniProt-MCP-Server · Summary

Comprehensive UniProt MCP server with 26 bioinformatics tools for protein research and analysis.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

Augmented-Nature-UniProt-MCP-Server · Use cases

  • Bioinformatics researchers can quickly retrieve detailed protein information and sequences for analysis
  • AI assistants can perform complex protein queries and comparative genomics through MCP tool calling
  • Drug discovery teams can analyze protein structures, variants, and pathways to identify potential therapeutic targets

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

Augmented-Nature-UniProt-MCP-Server · Install

Installation

Prerequisites

  • Node.js (v16 or higher)
  • npm or yarn

Setup

  1. Clone the repository:
git clone <repository-url>
cd uniprot-server
  1. Install dependencies:
npm install
  1. Build the project:
npm run build

Claude Desktop Configuration

Add the server to your Claude Desktop configuration:

{
  "mcpServers": {
    "uniprot": {
      "command": "node",
      "args": ["/path/to/uniprot-server/build/index.js"],
      "env": {}
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.