WHO ICF classification codes for health and disability. Lookup, search, browse via WHO API.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"icf": {
"url": "https://mcp-icf.medseal.app/mcp",
"type": "url"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for the WHO International Classification of Functioning, Disability and Health (ICF), deployed on Cloudflare Workers for global edge availability.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in health
MCP server providing seamless access to FHIR APIs for AI tools and healthcare applications
MCP server for the ClinicalTrials.gov v2 API. Search trials, retrieve study details and results, and match patients to eligible trials.
Manage your Hevy workouts, routines, folders, and exercise templates. Create and update sessions faster, organize plans, and search exercises to build workouts quickly. Stay synced with changes so your training log is always up to date.
MCP server for Oura Ring API v2 (sleep, activity, readiness, heart rate, workouts).
MCP Security Weekly
Get CVE alerts and security updates for io.github.stayce/icf-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for the WHO International Classification of Functioning, Disability and Health (ICF), deployed on Cloudflare Workers for global edge availability.
Live URL: https://mcp-icf.medseal.app/mcp
The ICF is a WHO classification that complements ICD (diagnosis codes) by describing how health conditions affect a person's functioning in daily life:
| Tool | Description |
|---|---|
icf_lookup | Look up a specific ICF code (e.g., b280, d450) |
icf_search | Search by keyword (e.g., "walking difficulty", "pain") |
icf_browse_category | Browse top-level categories: b, s, d, e |
icf_get_children | Get subcategories of a code |
icf_explain_qualifier | Explain severity ratings (0-4, 8, 9) |
icf_overview | Full ICF classification overview |
git clone https://github.com/stayce/icf-mcp-cloudflare.git
cd icf-mcp-cloudflare
npm install
Copy the example environment file:
cp .dev.vars.example .dev.vars
Edit .dev.vars with your WHO API credentials for local development.
For production, set secrets:
wrangler secret put WHO_CLIENT_ID
wrangler secret put WHO_CLIENT_SECRET
npm run dev
The server will be available at http://localhost:8787.
npm run deploy
For custom domain (configured in wrangler.toml):
wrangler deploy --env production
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"icf": {
"type": "url",
"url": "https://mcp-icf.medseal.app/mcp"
}
}
}
Or if deploying your own:
{
"mcpServers": {
"icf": {
"type": "url",
"url": "https://your-worker.workers.dev/mcp"
}
}
}
/ or /health - Health check / server info/mcp - MCP protocol endpoint (streamable HTTP)This server uses the WHO ICD-API which provides programmatic access to both ICD-11 and ICF classifications.
MIT License - see LICENSE