physionet-mcp
Enables querying and exploring PhysioNet biomedical datasets via BigQuery, with tools to list accessible datasets, view schemas, inspect tables, and run SQL queries.
README
physionet-mcp
Lean MCP server for PhysioNet datasets - works with any PhysioNet dataset you have access to.
šŗ This is a lean version of m3 with similar BigQuery and PhysioNet setup. Check out detailed videos here: https://rafiattrach.github.io/m3/
Install uv (required for uvx)
We use uvx to run the MCP server. Install uv from the official installer, then verify with uv --version.
- macOS:
brew install uv
- Linux (or macOS without Homebrew):
curl -LsSf https://astral.sh/uv/install.sh | sh
# macOS - enable for GUI apps like Claude Desktop:
sudo ln -s $(which uv) $(which uvx) /usr/local/bin/
- Windows (PowerShell)
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Verify installation:
uv --version
BigQuery authentication (CLI)
- Install Google Cloud SDK:
- macOS (Homebrew):
brew install google-cloud-sdk - Windows/Linux: see the installer at
https://cloud.google.com/sdk/docs/install
- macOS (Homebrew):
- Authenticate Application Default Credentials (ADC):
gcloud auth application-default login
This will open your browser ā choose the Google account that has access to your BigQuery project with PhysioNet data.
- Use your Google Cloud project ID in the MCP config (see Quick Setup). You can also export it in your shell:
export BIGQUERY_PROJECT_ID=your-project-id
Quick Setup
Paste the following into your MCP client configuration, then restart your client.
Production
{
"mcpServers": {
"physionet-mcp": {
"command": "uvx",
"args": ["physionet-mcp"],
"env": {
"BIGQUERY_PROJECT_ID": "your-project-id"
}
}
}
}
Local Development
{
"mcpServers": {
"physionet-mcp": {
"command": "/path/to/physionet-mcp/venv/bin/python",
"args": ["-m", "physionet_mcp.mcp_server"],
"cwd": "/path/to/physionet-mcp",
"env": {
"BIGQUERY_PROJECT_ID": "your-project-id"
}
}
}
}
Replace your-project-id with your Google Cloud project ID.
4 Simple Tools
- list_accessible_datasets ā See what you can access
- get_database_schema ā Find tables in a dataset
- get_table_info ā Check structure & sample data
- execute_query ā Run your analysis
Usage Examples
- "What PhysioNet datasets can I access?"
- "Show me MIMIC-IV hospital tables"
- "What's in the patients table?"
- "How many patients are in MIMIC-IV?"
Future Enhancements
Potential improvements for enterprise use:
- Dataset filtering - Restrict access to specific datasets for security
- Query optimization - Add result caching and query cost tracking
- Rate limiting - Implement query throttling for shared environments
- Enhanced metadata - Add column descriptions and data quality metrics
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.