Documentation
How to use biomarkers.sh from your browser or via MCP.
Getting Started
Sign up and configure biomarkers.sh as an MCP server in your client of choice.
1. Sign up
Run the following command to authenticate with your email:
npx biomarkers-sh signup
2. Configure your MCP client
Auto-configure your MCP client, or add manually:
npx biomarkers-sh setup-mcp
Add the following to your MCP configuration file:
{
"mcpServers": {
"biomarkers": {
"url": "https://biomarkers.sh/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}{
"mcpServers": {
"biomarkers": {
"url": "https://biomarkers.sh/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}{
"mcpServers": {
"biomarkers": {
"url": "https://biomarkers.sh/api/mcp",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
}Authentication
The server uses a two-tier access model. Read-only tools (list_studies, get_study_details) are public. Write tools (create_checkout, get_order_status) require a Bearer token.
Available Tools
Tools exposed by the biomarkers.sh MCP server.
Parameters:
Parameters:
Parameters:
Parameters:
Example Usage
A typical agent conversation flow using the MCP tools.
User:
What thyroid panels do you have?
Agent calls: list_studies({ category: "thyroid" })
Agent:
I found the Thyroid Panel ($69.99) which includes TSH, Free T3, Free T4, T3 Uptake, and Thyroid Peroxidase Antibodies. Results in 3–5 days. Want me to set up a purchase?
User:
Yes, my name is Juan Garcia Lopez, born March 15, 1990. Use john@example.com
Agent calls:
create_checkout({
study_ids: ["thyroid-panel-uuid"],
first_name: "Juan",
paternal_surname: "Garcia",
maternal_surname: "Lopez",
date_of_birth: "1990-03-15",
phone_number: "5551234567",
email: "john@example.com"
})Agent:
Your checkout link is ready: https://checkout.stripe.com/...
Resources
MCP resources exposed by the server.
A machine-readable JSON resource containing all available studies, their biomarkers, pricing, and metadata. Useful for agents that need to reason over the full catalog before making tool calls.