mcp-ncbi-fetcher

mcp-ncbi-fetcher

3.1

If you are the rightful owner of mcp-ncbi-fetcher and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

The Model Context Protocol (MCP) server is designed to facilitate communication between language models and various applications, providing a structured protocol for interaction.

to get this running you will need to clone the repository and cd into the directory, then run:

Build the container

docker build -t ncbi-mcp-server .

Run with stdio transport (for Claude Desktop)

docker run -it --rm ncbi-mcp-server

make sure you add this to claude_desktop_config.json ($env:AppData\Claude\claude_desktop_config.json on windows)

json{
  "mcpServers": {
    "ncbi-sequence-fetcher": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ncbi-mcp-server"
      ]
    }
  }
}