PomBase MCP Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@PomBase MCP ServerGet gene summary for cdc2"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
PomBase MCP Server
An MCP (Model Context Protocol) server that gives AI agents
structured access to PomBase, the comprehensive database for the fission
yeast Schizosaccharomyces pombe. It wraps PomBase's public, unauthenticated JSON API
(https://www.pombase.org/api/v1/dataset/latest/data, see the
API documentation) so agents can look up genes, GO
annotations, phenotypes, orthologs, protein domains, and interactions without scraping the website.
No API key or account is required — PomBase's API is free and open for academic/research use.
Features
🔎 Keyword search across all ~12,700 curated S. pombe genes
🧬 Gene summaries, protein domains, GO annotations, phenotypes, orthologs, and interactions
📊 A multi-gene comparison tool for quickly triaging gene lists (e.g. screen hits)
📝 Markdown (human-readable) or JSON (machine-readable) output for every tool
⚡ Async I/O throughout, with an in-memory cache for the large gene-summary dataset
Related MCP server: WormBase MCP Server
Available Tools
Tool | Description |
| Search/browse genes by name, systematic ID, or product keyword. Use this to resolve a gene name (e.g. |
| Core identifying info for a gene: name, product, synonyms, genomic location, taxon, UniProt/BioGRID IDs, characterisation status, deletion viability. |
| Protein domain/motif annotations: InterPro matches (source DB, coordinates, descriptions) and transmembrane domain coordinates. |
| Gene Ontology annotations (Molecular Function, Biological Process, Cellular Component), optionally filtered to one aspect. |
| FYPO (Fission Yeast Phenotype Ontology) annotations plus the gene's deletion viability (essential vs. non-essential). |
| Curated human and S. cerevisiae orthologs of the gene. |
| Curated physical and/or genetic interactions, with interactor names, evidence, and source references. |
| Workflow tool: fetches 2-10 genes in parallel and returns a side-by-side comparison (product, viability, characterisation status, ortholog counts). |
Every tool accepts a response_format of "markdown" (default, human-readable) or "json"
(structured, for programmatic use).
Requirements
Python 3.10+
uv (recommended) or
pip
Installation
Clone or download this repository, then choose one of the install paths below.
git clone [pombase-mcp](https://github.com/ubcd-ibfg/pombase-mcp)
cd pombase-mcpOption A: uv (recommended — no separate install step needed)
uv can run the server directly from the project directory with uv run, resolving
dependencies automatically. This is the command used in the client configs below.
Option B: pip
pip install -e .This installs the pombase-mcp console command (defined in pyproject.toml) on your PATH.
Connecting to Claude Code
Claude Code can register MCP servers with the
claude mcp add CLI command.
Using uv (from the cloned project directory):
claude mcp add pombase -- uv run --directory /absolute/path/to/pombase-mcp pombase-mcpUsing a pip install:
claude mcp add pombase -- pombase-mcpVerify it's connected:
claude mcp listThen just ask Claude Code things like "Use PomBase to find the human ortholog of cdc2 in fission yeast" — it will discover and call the tools automatically.
To remove it later: claude mcp remove pombase.
Project-scoped config (checked into a repo)
Alternatively, add a .mcp.json file to your project root:
{
"mcpServers": {
"pombase": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/pombase-mcp", "pombase-mcp"]
}
}
}Connecting to Claude Desktop
Edit your Claude Desktop config file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"pombase": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/pombase-mcp", "pombase-mcp"]
}
}
}(If you installed via pip install -e . instead, replace "command"/"args" with
"command": "pombase-mcp", "args": [], using the full path to the executable if it's not on
Claude Desktop's PATH.)
Restart Claude Desktop after saving. The PomBase tools will appear under the 🔌 connector icon.
Connecting to Cursor
Add to .cursor/mcp.json in your project (or the global ~/.cursor/mcp.json):
{
"mcpServers": {
"pombase": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/pombase-mcp", "pombase-mcp"]
}
}
}Connecting to Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"pombase": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/pombase-mcp", "pombase-mcp"]
}
}
}Connecting to OpenCode
OpenCode is a web-based IDE with built-in MCP support. To connect PomBase MCP:
Open your OpenCode workspace
Go to Settings → MCP Servers
Add a new server with the following configuration:
{
"pombase": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/pombase-mcp", "pombase-mcp"]
}
}Replace /absolute/path/to/pombase-mcp with the full path to your cloned repository.
Alternatively, if you've installed via pip install -e .:
{
"pombase": {
"command": "pombase-mcp",
"args": []
}
}Save the configuration and the PomBase tools will be available in your OpenCode AI assistant.
Connecting to any other MCP-compatible client (generic stdio config)
Most agent platforms (Cline, Continue, LibreChat, Zed, custom MCP clients, etc.) accept the same shape of config — a command to launch the server over stdio:
{
"mcpServers": {
"pombase": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/pombase-mcp", "pombase-mcp"]
}
}
}or, if installed with pip:
{
"mcpServers": {
"pombase": {
"command": "pombase-mcp",
"args": []
}
}
}Consult your client's docs for where this config file lives.
Running and testing manually
Run the server directly over stdio:
uv run --directory /absolute/path/to/pombase-mcp pombase-mcp
# or, if pip-installed:
pombase-mcpInspect and test tool calls interactively with the official MCP Inspector:
npx @modelcontextprotocol/inspector uv run --directory /absolute/path/to/pombase-mcp pombase-mcpExample prompts once connected
"Search PomBase for kinase genes and show me the first 10."
"What is the product of SPBC11B10.09, and is it essential?"
"What GO biological process terms is pom1 (SPAC2F7.03c) annotated with?"
"What are the human orthologs of cdc2?"
"List the physical interactions for ase1."
"Compare cdc2, cdc13, and wee1 — which are essential and what are their human orthologs?"
Data source and licensing
All data is served live from PomBase (https://www.pombase.org/api/v1/dataset/latest/data) and is not bundled with this server. PomBase is funded by the Wellcome Trust and run by a consortium comprising the University of Cambridge, University College London, and the Babraham Institute. If you use PomBase data in your research, please cite PomBase — see https://www.pombase.org/help/citing-pombase.
This project is an independent, unofficial MCP wrapper and is not developed or endorsed by the PomBase team.
License
MIT — see LICENSE.
This server cannot be deployed
Maintenance
Related MCP Connectors
Connect AI clients to biomedical data and tools.
Curated knowledge API for AI agents - skill packs, semantic search, validated patterns.
- GoroOAuthai.usegoro
62 real-world tools for agents: search, scraping, social, enrichment, image, video, voice.
Query STRING interactions, enrichment, annotations, homology, and PPI networks.
Related MCP Servers
- FlicenseBqualityDmaintenanceEnables AI assistants to query genetic variant data, gene constraints, and population genetics information from the gnomAD (Genome Aggregation Database) through its GraphQL API. Supports searching for genes and variants, retrieving constraint scores, analyzing population frequencies, and accessing genomic coverage data.910-

WormBase MCP Serverofficial
AlicenseAqualityDmaintenanceEnables querying the WormBase database for C. elegans and nematode genomics data, including gene information, protein sequences, phenotypes, interactions, and expression patterns through natural language.124 npmMIT- AlicenseCqualityDmaintenanceEnables AI assistants to query gene annotations, expression, pathways, variants, and more via the MyGene.info API, supporting batch operations and multiple biological data sources.26MIT
- AlicenseAqualityDmaintenanceEnables coding agents to interact with the Reactome pathway database, including search, lookup, hierarchy traversal, SBML/SBGN export, and gene-set enrichment analysis.17MIT