Hosted MCP setup
Connect an agent to Wellness Cloud.
The hosted hub exposes a Streamable HTTP MCP endpoint for beta users who want remote wellness context without running the connector stack themselves.
Current beta endpoint
- MCP URL
- https://api.delx.ai/wellness-hub/mcp
- Dashboard
- https://api.delx.ai/wellness-hub/dashboard/
- Auth
Authorization: Bearer vital_live_...
Request beta access
The hosted hub is live for founding users. Paid-entitled Nourish accounts can generate a remote MCP key from the account page.
Create an API key
Keys use the vital_test_ or vital_live_ prefix. Secrets are shown once; the hub stores hashes only.
Connect through Streamable HTTP MCP
Use the hosted /mcp endpoint with an Authorization bearer key from any compatible remote MCP client.
Verify plan gates
Public tools work with an API key. Premium tools such as wellness_today require an active Wellness Cloud plan.
Smoke call
Verify the hosted endpoint before wiring workflows.
Start with `wellness_capabilities`; it does not read provider data and returns the billing model, public tools and gated premium tools.
curl -s https://api.delx.ai/wellness-hub/mcp \
-H 'content-type: application/json' \
-H 'accept: application/json, text/event-stream' \
-H 'authorization: Bearer vital_live_your_key' \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "wellness_capabilities",
"arguments": { "response_format": "json" }
}
}'Public tools
wellness_capabilitieswellness_provider_statuswellness_privacy_auditwellness_export_datawellness_delete_dataPlan-gated tools
wellness_todaywellness_summaryhealth_recommend_workoutrecommend_today_trainingbuild_workout_from_recoveryGeneric client config
Use the remote endpoint from any MCP client that supports Streamable HTTP.
{
"mcpServers": {
"delx-wellness-cloud": {
"type": "http",
"url": "https://api.delx.ai/wellness-hub/mcp",
"headers": {
"Authorization": "Bearer vital_live_your_key"
}
}
}
}