Enhances large language models with protein structure analysis capabilities, including active site analysis and disease-protein searches, by connecting to the RCSB Protein Data Bank.
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.
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.
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 conditionsTo install BioMCP for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install @acashmoney/bio-mcp --client claude
# Clone the repository
git clone https://github.com/acashmoney/bio-mcp.git
# Install dependencies
npm install
# Start the server
npm start
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.
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:
When integrated with a compatible language model, Bio-MCP enables queries like:
BioMCP includes a comprehensive testing suite with unit, integration, and end-to-end 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
Check code quality:
npm run lint
Fix linting issues automatically:
npm run lint:fix
An MCP server using stdio transport, offering file system access, a calculator, and a code review tool. Requires Node.js.
Analyze Solana metrics from InfluxDB and generate Grafana dashboards.
A collection of reference server implementations for the Model Context Protocol (MCP) using Typescript and Python SDKs.
An open-source library to connect any LLM to any MCP server, enabling the creation of custom agents with tool access.
Analyzes Unreal Engine source code to provide context for AI assistants.
A server for blockchain interactions, offering Ethereum vanity address generation, 4byte lookup, ABI encoding, and multi-chain RPC calls.
Provides real-time Flutter/Dart documentation and pub.dev package information to AI assistants, supporting all packages on demand.
Retrieves essential network information from devices using gNMI and OpenConfig models.
Perform advanced memory forensics analysis using Volatility3 via a conversational interface. Requires user-specified memory dump files.
Migrate JavaScript files to TypeScript with customizable conversion rules.