BioMCP: Enabling agent-based biomedical R&D
What is acashmoney bio mcp
BioMCP: Enabling agent-based biomedical R&D
*
!BioMCP
Overview
BioMCP is a Model Context Protocol (MCP) server designed to enhance large language models with protein structure analysis capabilities. It provides tools for analyzing protein active sites and searching for disease-related proteins by interfacing with established protein databases.
Future work will be centered around enabling agents to utilize the BioMCP.
Features
- Active Site Analysis: Examine the binding sites and functional residues of proteins using PDB IDs
- Disease-Protein Search: Find protein structures associated with specific diseases or medical conditions
- Integrated Data Access: Connect seamlessly with RCSB Protein Data Bank (PDB)
Technical Details
BioMCP implements the Model Context Protocol, allowing language models to access specialized protein structure knowledge without requiring this information to be part of their training data. The server handles API connections, data formatting, and error handling to provide reliable protein structure insights.
API Endpoints
BioMCP exposes two primary tools:
analyze-active-site
: Provides detailed information about protein binding sites using a PDB IDsearch-disease-proteins
: Returns proteins related to specified diseases or medical conditions
Getting Started
Installing via Smithery
To install BioMCP for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @acashmoney/bio-mcp --client claude
Manual Installation
# Clone the repository
git clone https://github.com/acashmoney/bio-mcp.git
# Install dependencies
npm install
# Start the server
npm start
Setup Instructions
Running the MCP Inspector
-
Start the BioMCP server:
npm start
-
In a separate terminal, install the MCP Inspector globally (if not already installed):
npm install -g @anthropic-ai/mcp-inspector
-
Launch the MCP Inspector and connect to your local BioMCP server:
npx @modelcontextprotocol/inspector node build/index.js
-
Use the inspector interface to test tools and view responses.
Using with Claude Desktop
-
Build the BioMCP server:
npm run build
-
Configure Claude Desktop to launch the MCP server:
a. Locate your Claude Desktop config.json file (typically in your user directory)
b. Edit the config.json to include the BioMCP server build path. Example configuration:
{ "globalShortcut": "", "mcpServers": { "bio-mcp": { "command": "node", "args": [ "/path/to/your/build/index.js" ] } } }
c. Replace
/path/to/your/build
with your actual path to the project directory. -
Restart Claude Desktop for the changes to take effect.
-
You can now ask Claude questions that utilize the BioMCP tools:
- "What are the key residues in the active site of PDB structure 6LU7?"
- "Find proteins related to Alzheimer's disease"
Example Usage
When integrated with a compatible language model, Bio-MCP enables queries like:
- "What are the key residues in the active site of PDB structure 6LU7?"
- "Find proteins related to Alzheimer's disease"
Requirements
- Node.js 20.0.0 or higher
- TypeScript 5.0+
- Compatible MCP client implementation
Testing
BioMCP includes a comprehensive testing suite with unit, integration, and end-to-end tests.
Running Tests
Run all tests:
npm test
Run specific test suites:
# Unit tests only
npm run test:unit
# Integration tests only (API interactions)
npm run test:integration
# End-to-end tests only
npm run test:e2e
Linting
Check code quality:
npm run lint
Fix linting issues automatically:
npm run lint:fix
Roadmap
- Expand level of detail for active site descriptions
- Leverage 3-D coordinates
- Tools for interfacing with literature
- Tools for interfacing with computational biology models:
- RFdiffusion
- ProteinMPNN
- ColabFold
- Additional protein design and structure prediction tools
- Agent-based research pipelines
- Introduce client with protein visualization tools
Leave a Comment
Frequently Asked Questions
What is MCP?
MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.
What are MCP Servers?
MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.
How do MCP Servers work?
MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.
Are MCP Servers secure?
Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.
Related MCP Servers
chrisdoc hevy mcp
sylphlab pdf reader mcp
An MCP server built with Node.js/TypeScript that allows AI agents to securely read PDF files (local or URL) and extract text, metadata, or page counts. Uses pdf-parse.
aashari mcp server atlassian bitbucket
Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.
aashari mcp server atlassian confluence
Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP interface.
prisma prisma
Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB
Zzzccs123 mcp sentry
mcp sentry for typescript sdk
zhuzhoulin dify mcp server
zhongmingyuan mcp my mac
zhixiaoqiang desktop image manager mcp
MCP 服务器,用于管理桌面图片、查看详情、压缩、移动等(完全让Trae实现)
zhixiaoqiang antd components mcp
An MCP service for Ant Design components query | 一个减少 Ant Design 组件代码生成幻觉的 MCP 服务,包含系统提示词、组件文档、API 文档、代码示例和更新日志查询
Submit Your MCP Server
Share your MCP server with the community
Submit Now