MCP that connects to wetlab protocol resources, including protocols.io
Please refer to the documentation, in particular, the API documentation.
You can also find the project on BioContextAI, the community-hub for biomedical MCP servers: protocol-mcp on BioContextAI.
You need to have Python 3.10 or newer installed on your system. If you don't have Python installed, we recommend installing uv.
There are several alternative options to install protocol-mcp:
After publication to PyPI:
uvx protocol_mcpOr from a Git repository:
uvx git+https://github.com/biocontext-ai/protocol-mcp.git@mainIf your MCP server is published to PyPI, use the following configuration:
{
"mcpServers": {
"protocol-mcp": {
"command": "uvx",
"args": ["protocol_mcp"]
}
}
}In case the MCP server is not yet published to PyPI, use this configuration:
{
"mcpServers": {
"protocol-mcp": {
"command": "uvx",
"args": ["git+https://github.com/biocontext-ai/protocol-mcp.git@main"]
}
}
}For purely local development (e.g., in Cursor or VS Code), use the following configuration:
{
"mcpServers": {
"protocol-mcp": {
"command": "uvx",
"args": [
"--refresh",
"--from",
"path/to/repository",
"protocol_mcp"
]
}
}
}If you want to reuse and existing environment for local development, use the following configuration:
{
"mcpServers": {
"protocol-mcp": {
"command": "uv",
"args": ["run", "--directory", "path/to/repository", "protocol_mcp"]
}
}
}pip install --user protocol_mcppip install git+https://github.com/biocontext-ai/protocol-mcp.git@mainIf you found a bug, please use the issue tracker.
t.b.a