{
"mcpServers": {
"bioruby-kegg": {
"args": [
"bioruby-mcp-server"
],
"command": "wsl.exe"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
BSD-2-Clause. View license →
Is it maintained?
Last commit 201 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Bioruby Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server that provides access to BioRuby KEGG functionality. This server allows AI assistants to query KEGG databases for biological pathways, compounds, enzymes, and other molecular information through the standardized MCP protocol.
Built using the official MCP Ruby SDK.
Add this line to your application's Gemfile:
gem 'bioruby-mcp-server'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install bioruby-mcp-server
To start the MCP server:
$ bioruby-mcp-server
The server will start and listen for MCP protocol messages on stdin/stdout.
The server provides the following tools for interacting with KEGG databases:
kegg_pathway_infoGet detailed information about a KEGG pathway.
Parameters:
pathway_id (string): KEGG pathway ID (e.g., 'map00010', 'hsa00010')Example:
{
"name": "kegg_pathway_info",
"arguments": {
"pathway_id": "map00010"
}
}
kegg_compound_infoGet detailed information about a KEGG compound.
Parameters:
compound_id (string): KEGG compound ID (e.g., 'C00002', 'cpd:C00002')Example:
{
"name": "kegg_compound_info",
"arguments": {
"compound_id": "C00002"
}
}
kegg_enzyme_infoGet detailed information about a KEGG enzyme.
Parameters:
enzyme_id (string): KEGG enzyme ID (e.g., 'ec:1.1.1.1')Example:
{
"name": "kegg_enzyme_info",
"arguments": {
"enzyme_id": "ec:1.1.1.1"
}
}
kegg_search_compoundsSearch for KEGG compounds by name or formula.
Parameters:
query (string): Search query (compound name, formula, etc.)database (string, optional): Database to search (default: 'compound')Example:
{
"name": "kegg_search_compounds",
"arguments": {
"query": "glucose",
"database": "compound"
}
}
kegg_find_pathways_by_compoundFind pathways containing a specific compound.
Parameters:
compound_id (string): KEGG compound ID (e.g., 'C00002')Example:
{
"name": "kegg_find_pathways_by_compound",
"arguments": {
"compound_id": "C00002"
}
}
kegg_list_organismsList available organisms in KEGG.
Parameters:
filter (string, optional): Optional filter for organism namesExample:
{
"name": "kegg_list_organisms",
"arguments": {
"filter": "human"
}
}
This MCP server can be used with any AI assistant that supports the Model Context Protocol. Configure your AI assistant to connect to this server to enable KEGG database queries.
To connect this server to Claude Desktop, you'll need to configure it in Claude's MCP settings:
First, install the bioruby-mcp-server gem:
gem install bioruby-mcp-server
Add the server configuration to Claude Desktop's configuration file:
On macOS:
Edit or create ~/Library/Application Support/Claude/claude_desktop_config.json
On Windows:
Edit or create %APPDATA%\Claude\claude_desktop_config.json
On Linux:
Edit or create ~/.config/Claude/claude_desktop_config.json
Add the following configuration:
{
"mcpServers": {
"bioruby-kegg": {
"command": "bioruby-mcp-server",
"args": []
}
}
}
If you are Windows WSL user:
{
"mcpServers": {
"bioruby-kegg": {
"command": "wsl.exe",
"args": [
"bioruby-mcp-server"
]
}
}
}
After saving the configuration file, restart Claude Desktop to load the new MCP server.
Once connected, you can test the integration by asking Claude to query KEGG databases. For example: