Augmented-Nature-UniProt-MCP-Server vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
Augmented-Nature-UniProt-MCP-Server by Augmented-Nature | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 19 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsKnowledge Graph | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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": {}
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.