Connects Claude to the official Brazilian ICD-10 classification system maintained by DATASUS. Exposes six tools for working with medical codes: search by term or code, lookup detailed information, navigate the hierarchical structure from chapters down to subcategories, validate codes for health system compliance, and pull database statistics. The data comes from official DATASUS CSV files covering all 22 chapters and their subcategories. Reach for this when building healthcare applications for Brazil, processing medical records, or helping clinicians find the right diagnostic codes for SUS documentation.
MCP Server for Brazilian ICD-10 (DATASUS) - International Classification of Diseases
A Model Context Protocol (MCP) server that provides access to the Brazilian version of ICD-10 (CID-10), maintained by DATASUS/Ministry of Health of Brazil.
Ask your assistant, in plain Portuguese:
cid10_search / cid10_lookupcid10_hierarchycid10_validarThe answers come straight from the bundled DATASUS V2008 dataset — official codes and descriptions, not guesses from training data.
Add to your Claude Desktop configuration file:
Windows: %APPDATA%\Claude\claude_desktop_config.json
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"cid10-br": {
"command": "npx",
"args": ["cid10-br-mcp"]
}
}
}
npm install -g cid10-br-mcp
Then add to Claude Desktop config:
{
"mcpServers": {
"cid10-br": {
"command": "cid10-br-mcp"
}
}
}
| Tool | Description |
|---|---|
cid10_search | Search CID-10 codes by term (code or description) |
cid10_lookup | Get detailed information for a specific code |
cid10_hierarchy | Get all codes under a category/prefix |
cid10_capitulos | List all 22 chapters of CID-10 |
cid10_stats | General statistics about the database |
cid10_validar | Validate a code for use in health systems |
Once configured, you can ask Claude:
The data comes from official DATASUS sources:
Source: DATASUS - CID-10
# Clone the repository
git clone https://github.com/SidneyBissoli/cid10-br-mcp.git
cd cid10-br-mcp
# Install dependencies
npm install
# Build
npm run build
# Run locally
npm start
npx @modelcontextprotocol/inspector node dist/index.js
Contributions are welcome! Feel free to:
git checkout -b feature/new-feature)git commit -m 'Add new feature')git push origin feature/new-feature)This project is licensed under the MIT License - see the LICENSE file for details.
Sidney Bissoli
Made for the Brazilian health community