valeo-connector
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@valeo-connectorHow do my labs look and is my metabolic program on track?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Valeo Connector (MCP) — MVP
A minimal remote MCP server that turns Valeo Health member data into a Claude connector, the same way the Function Health connector works.
Zero dependencies. Standard-library Python only. Runs on the stock macOS
python3.Transport: Streamable HTTP (MCP spec
2025-06-18), single/mcpendpoint.Auth: none yet (demo). All data comes from
sample_data.py.Read-only. Every tool is annotated
readOnlyHint: true.
Live demo endpoint (sample data, no auth):
https://valeo-connector.onrender.com/mcpAdd that in Claude under Settings > Connectors > Add custom connector. Health check: https://valeo-connector.onrender.com/health. Free instance, so it sleeps after ~15 minutes idle and the first call after a nap takes 30-60s — open the health URL to warm it before a demo.
Files
File | What it is |
| The whole connector: HTTP transport + JSON-RPC dispatch + 5 tools |
| The only fake part. Swap these lookups for real Valeo API calls to go live |
| 22-check smoke test of the protocol and every tool |
| Project-scoped config so Claude Code picks up the local server automatically |
|
|
| Brand icon, plus |
Related MCP server: health-mcp
Tools
Tool | Answers questions like | Parameters |
| "How do my labs look?" "What needs attention?" |
|
| "How is my heart health?" "Which areas are off?" |
|
| "How is my Metabolic Reset going?" "Am I on track?" |
|
| "What's my next appointment?" "Do I need to fast?" |
|
| "What supplements am I on and why?" | — |
Health categories in the sample panel: Heart, Metabolic, Vitamins & Minerals, Thyroid, Liver, Kidney, Blood & Immunity, Hormones, Male Health.
Like Function Health, the connector deliberately exposes summary-level data only — counts, categories, flags and directions ("Vitamin D, low, significant"), never raw lab values.
Icon
The server advertises a square brand icon on its serverInfo as a data URI, per the MCP
icons field (SEP-973), and serves it at /icon.png, /icon-128.png and /favicon.ico.
Claude.ai does not render this yet for custom connectors - custom connectors show a generic icon regardless of what the server declares (claude-ai-mcp#152). Declaring it costs nothing and starts working the day that lands. A branded icon today requires a Connectors Directory listing, where the icon is uploaded during submission.
Run it
./run.shThen in another terminal:
python3 test_server.pyHealth check: http://127.0.0.1:8787/health
Demo path 1 — Claude Code (fastest, ~30 seconds)
.mcp.json already points at http://127.0.0.1:8787/mcp. Start the server, open Claude Code
in this folder, approve the valeo server when prompted, then ask:
How do my labs look, and how is my program going?
Demo path 2 — anyone with a Claude subscription (public URL)
Claude's servers call your endpoint, so it needs a stable public HTTPS URL; localhost and
tunnels that die on restart will not do. Deploy the repo, then anyone on a paid Claude plan
(Pro, Max, Team, Enterprise) can add it themselves:
Claude → Settings → Connectors → Add custom connector → paste
https://valeo-connector.onrender.com/mcpDeploying
render.yaml and Dockerfile are both in the repo and run server.py unchanged.
Render (no CLI needed, free, no card):
Click the Deploy to Render button at the top of this README, or go to render.com → New → Blueprint → pick this repo → Apply. Either way it reads
render.yaml.Sign in with GitHub and approve access to the repo.
You get
https://valeo-connector.onrender.com(Render may add a suffix if the name is taken). The connector URL is that plus/mcp. Pushing tomainauto-redeploys.
Verify the deploy before wiring it into Claude:
python3 test_server.py https://valeo-connector.onrender.comAll 22 checks should pass against the live URL exactly as they do locally.
Free instances sleep after ~15 minutes idle, so the first call after a nap takes 30–60s (Claude's tool timeout is 300s, so it still works — it just feels slow). The $7 plan or Valeo's own infrastructure removes that.
Any container host (Cloud Run, Fly, Railway) works off the Dockerfile. Set HOST=0.0.0.0;
the server reads PORT from the environment.
Eventually this should live on Valeo's own domain — Function Health serves theirs from
https://services.functionhealth.com/ai-chat/mcp.
Two things to know before sharing the URL
There is no auth yet, so every user sees the same fictional member. That is fine for a demo and it is stated in the server's own instructions to Claude. It is the one thing that must change before real member data goes anywhere near this.
Being listed in Claude's Connectors Directory is a separate step — an application to Anthropic. Without it the connector still works; users just add the URL by hand instead of finding it in the directory.
What to add after the MVP
OAuth 2.0 so each member sees only their own data. Claude supports Dynamic Client Registration; the callback for hosted surfaces is
https://claude.ai/api/mcp/auth_callback. Serve/.well-known/oauth-protected-resource(RFC 9728) and scope the tokens (read:labs,read:programs,read:appointments).Real data: replace
sample_data.pywith authenticated Valeo API calls keyed to the token.Stable hosting: any Python host works since there are no dependencies.
A docs page like Function Health's, and submit to the Connectors Directory.
Limits worth knowing
Constraint | Limit |
Claude.ai / Desktop tool result size | ~150,000 characters |
Claude.ai / Desktop tool timeout | 300 seconds |
Transport | Streamable HTTP (legacy HTTP+SSE deprecated) |
Not medical advice; summary-level data only.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
AlicenseNot gradedqualityBmaintenanceMCP server for connecting Claude Desktop to FHIRfly healthcare reference data APIs, enabling lookup of drugs, providers, clinical codes, and more.222MIT- AlicenseAqualityCmaintenanceRead-only MCP server enabling natural language querying of personal health and cultural activity scores from the health.ojimpo.com dashboard via Claude.525MIT
- AlicenseAqualityBmaintenanceA Claude-compatible MCP server that exposes health-domain tools over 100% synthetic data, built with security and compliance in mind.4MIT
- AlicenseBqualityBmaintenanceMCP server for accessing Oura Ring data from Claude Code and claude.ai, providing summarized health metrics and raw API data.11MIT
Related MCP Connectors
Hosted MCP server exposing US hospital procedure cost data to AI assistants
MCP server for medicare-coverage
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/priyanshupriyamvaleo/valeo-connector'
If you have feedback or need assistance with the MCP directory API, please join our Discord server