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 | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 5 mo ago | this 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
- Clone the repository:
git clone <repository-url>
cd uniprot-server- Install dependencies:
npm install- Build the project:
npm run buildClaude 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