knowledgebase-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
knowledgebase-mcp by biocontext-ai | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 23 | ★ 85,748 |
| 30d uses | — | — |
| Score | 42 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsKnowledge GraphDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 4 mo ago | this month |
knowledgebase-mcp · Summary
BioContextAI Knowledgebase MCP server provides unified access to biomedical APIs for AI agents.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
knowledgebase-mcp · Use cases
- Biomedical research assistants that can query multiple databases simultaneously
- Drug discovery workflows accessing protein interaction networks and pathway data
- Literature review tools that search preprint servers and academic publications
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
knowledgebase-mcp · Install
Installation
Claude Desktop Setup
Edit your claude_desktop_config.json file:
{
"mcpServers": {
"biocontext_kb": {
"command": "uvx",
"args": [
"biocontext_kb@latest"
],
"env": {
"UV_PYTHON": "3.12"
}
}
}
}Using uv
Run with streamable HTTP:
export MCP_ENVIRONMENT=PRODUCTION && export PORT=8000 && uvx biocontext_kbRun with stdio transport:
export MCP_ENVIRONMENT=DEVELOPMENT && uvx biocontext_kbIDE Setup
Configure your MCP client (VS Code, Cursor, etc.) with:
{
"mcpServers": {
"biocontext_kb": {
"command": "uvx",
"args": [
"biocontext_kb@latest"
]
}
}
}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.