MCP Hub
Back to servers

WormBase MCP Server

A specialized MCP server for querying the WormBase database to retrieve comprehensive C. elegans genomics data, including gene sequences, phenotypes, interactions, and disease models.

Tools
11
Updated
Dec 12, 2025

WormBase MCP Server

MCP server for querying WormBase - the C. elegans and nematode genomics database.

Installation

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "wormbase": {
      "command": "npx",
      "args": ["-y", "@nuin/wormbase-mcp"]
    }
  }
}

Claude Code (CLI)

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "wormbase": {
      "command": "npx",
      "args": ["-y", "@nuin/wormbase-mcp"]
    }
  }
}

Cursor

Add to Cursor settings (Settings > MCP Servers):

{
  "wormbase": {
    "command": "npx",
    "args": ["-y", "@nuin/wormbase-mcp"]
  }
}

Windsurf

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "wormbase": {
      "command": "npx",
      "args": ["-y", "@nuin/wormbase-mcp"]
    }
  }
}

From source

git clone https://github.com/WormBase/wormbase-mcp.git
cd wormbase-mcp
npm install && npm run build

Then use the local path in your config:

{
  "mcpServers": {
    "wormbase": {
      "command": "node",
      "args": ["/path/to/wormbase-mcp/dist/index.js"]
    }
  }
}

Usage

Just ask questions naturally:

  • "What does daf-2 do?"
  • "Search for genes involved in longevity"
  • "Get phenotypes for unc-13"
  • "Find interactions for lin-14"
  • "What are the homologs of aap-1?"
  • "Give me the sequence of protein CE29083"

Tools

ToolDescription
searchSearch genes, proteins, phenotypes, strains
get_geneGene details (accepts names like daf-2 or IDs like WBGene00000898)
get_proteinProtein sequences and domains
get_phenotypePhenotype info and associated genes
get_diseaseHuman disease models
get_strainLaboratory strains
get_variationAlleles and mutations
get_interactionsGenetic and physical interactions
get_expressionExpression patterns
get_ontologyGO annotations
get_paperPublication details

Data Sources

License

MIT

Reviews

No reviews yet

Sign in to write a review