ICF MCP Server
Provides access to the WHO International Classification of Functioning, Disability and Health (ICF) via the WHO ICD-API, enabling lookup, search, and browsing of ICF codes and categories.
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., "@ICF MCP ServerLook up ICF code b280"
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.
ICF MCP Server
A Model Context Protocol (MCP) server that provides access to the WHO International Classification of Functioning, Disability and Health (ICF) via the WHO ICD-API.
What is ICF?
The ICF is a WHO classification that complements ICD (diagnosis codes) by describing how health conditions affect a person's functioning in daily life. It covers:
Body Functions (b) - Physiological and psychological functions
Body Structures (s) - Anatomical parts of the body
Activities and Participation (d) - Task execution and life involvement
Environmental Factors (e) - Physical, social, and attitudinal environment
Tools
Tool | Description |
| Look up a specific ICF code (e.g., |
| Search by keyword (e.g., "walking difficulty", "pain") |
| Browse top-level categories: |
| Get subcategories of a code |
| Explain severity ratings (0-4, 8, 9) |
| Full ICF classification overview |
Prerequisites
WHO ICD-API credentials (free): Register at https://icd.who.int/icdapi
Python 3.11+
Installation
# Clone the repository
git clone https://github.com/stayce/icf-mcp-server.git
cd icf-mcp-server
# Create virtual environment
python3 -m venv .venv
source .venv/bin/activate
# Install dependencies
pip install -e .Configuration
Create a .env file with your WHO API credentials:
cp .env.example .env
# Edit .env with your credentialsUsage with Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"icf": {
"command": "/path/to/icf-mcp-server/.venv/bin/python",
"args": ["-m", "icf_mcp"],
"env": {
"WHO_ICD_CLIENT_ID": "your_client_id",
"WHO_ICD_CLIENT_SECRET": "your_client_secret"
}
}
}
}Restart Claude Desktop to load the server.
Example Queries
Once configured, you can ask Claude:
"Look up ICF code b280"
"Search ICF for walking difficulties"
"What are the subcategories under d4 (Mobility)?"
"Explain ICF qualifier 3"
"Give me an overview of the ICF classification"
Development
# Install in development mode
pip install -e .
# Run tests
python -m pytest
# Test the client directly
python -c "
import asyncio
from icf_mcp.who_client import WHOICFClient
async def test():
client = WHOICFClient(client_id='...', client_secret='...')
results = await client.search('pain')
print(results)
await client.close()
asyncio.run(test())
"API Reference
This server uses the WHO ICD-API which provides programmatic access to both ICD-11 and ICF classifications.
API Documentation: https://icd.who.int/docs/icd-api/APIDoc-Version2/
ICF Browser: https://icd.who.int/dev11/l-icf/en
License
MIT License - see LICENSE
Contributing
Contributions welcome! Please open an issue or submit a pull request.
Acknowledgments
World Health Organization for the ICD-API
Anthropic for the Model Context Protocol
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/stayce/icf-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server