PomBase MCP Server
Enables AI agents to query the fission yeast PomBase database for gene summaries, GO annotations, phenotypes, orthologs, domains, and interactions via structured API calls.
README
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
Available Tools
| Tool | Description |
|---|---|
pombase_search_genes |
Search/browse genes by name, systematic ID, or product keyword. Use this to resolve a gene name (e.g. cdc2) to its systematic ID (e.g. SPBC11B10.09). Supports pagination. |
pombase_get_gene_summary |
Core identifying info for a gene: name, product, synonyms, genomic location, taxon, UniProt/BioGRID IDs, characterisation status, deletion viability. |
pombase_get_gene_domains |
Protein domain/motif annotations: InterPro matches (source DB, coordinates, descriptions) and transmembrane domain coordinates. |
pombase_get_gene_go_annotations |
Gene Ontology annotations (Molecular Function, Biological Process, Cellular Component), optionally filtered to one aspect. |
pombase_get_gene_phenotypes |
FYPO (Fission Yeast Phenotype Ontology) annotations plus the gene's deletion viability (essential vs. non-essential). |
pombase_get_gene_orthologs |
Curated human and S. cerevisiae orthologs of the gene. |
pombase_get_gene_interactions |
Curated physical and/or genetic interactions, with interactor names, evidence, and source references. |
pombase_compare_genes |
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-mcp
Option 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-mcp
Using a pip install:
claude mcp add pombase -- pombase-mcp
Verify it's connected:
claude mcp list
Then 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.json - Windows:
%APPDATA%\Claude\claude_desktop_config.json - Linux:
~/.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-mcp
Inspect and test tool calls interactively with the official MCP Inspector:
npx @modelcontextprotocol/inspector uv run --directory /absolute/path/to/pombase-mcp pombase-mcp
Example 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.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。