MCP Catalogs
Home

biomcp vs filesystem

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

biomcp
by genomoncology
filesystem
by modelcontextprotocol
Stars★ 507★ 85,748
30d uses
Score5377
Official
Categories
Knowledge GraphAI / LLM ToolsDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageRustTypeScript
Last commit1 mo agothis month

biomcp · Summary

BioMCP is a biomedical-focused MCP server that provides unified access to multiple biomedical data sources through a single command interface.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

biomcp · Use cases

  • Researchers performing literature reviews and meta-analysis across multiple biomedical databases
  • Clinicians seeking information about gene variants, drug interactions, and disease associations
  • Biomedical developers building applications that need to query multiple biomedical APIs

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

biomcp · Install

Binary install

curl -fsSL https://biomcp.org/install.sh | bash

PyPI tool install

uv tool install biomcp-cli
# or: pip install biomcp-cli

Claude Desktop extension

Install BioMCP from the Anthropic Directory in Claude Desktop.

MCP clients

{
  "mcpServers": {
    "biomcp": {
      "command": "biomcp",
      "args": ["serve"]
    }
  }
}

Remote HTTP server

biomcp serve-http --host 127.0.0.1 --port 8080

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.