MCP Catalogs
Home

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
Score4277
Official
Categories
AI / LLM ToolsKnowledge GraphDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit4 mo agothis 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_kb

Run with stdio transport:

export MCP_ENVIRONMENT=DEVELOPMENT && uvx biocontext_kb

IDE 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.

Comparison generated from public README + GitHub signals. Last updated automatically.