MCP Server for Brazilian ICD-10 (DATASUS) - International Classification of Diseases
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"cid10-br": {
"args": [
"cid10-br-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP Server for Brazilian ICD-10 (DATASUS) - International Classification of Diseases
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'cid10-br-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked cid10-br-mcp against OSV.dev.
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 for the ClinicalTrials.gov v2 API. Search trials, retrieve study details and results, and match patients to eligible trials.
MCP server for Withings health data — sleep, activity, heart, and body metrics.
Search and contribute to the Open Food Facts database.
A macOS Model Context Protocol (MCP) server that acts as the central nervous system for your AI agent. Bridges Calendar, Reminders, Notes, and Health data using a hybrid Python + Swift architecture.
MCP Security Weekly
Get CVE alerts and security updates for io.github.SidneyBissoli/cid10-br-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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
``
... [View full README on GitHub](https://github.com/SidneyBissoli/cid10-br-mcp#readme)