dental-ai
Enables AI-powered dental X-ray analysis and treatment planning using YOLOv11 and clinical guideline RAG, integrated with MCP for use with Claude and other AI assistants.
README
π¦· Dental AI Treatment Planner
<div align="center">
AI-Powered Dental Treatment Planning with YOLOv11, MCP Server, and RAG
Features β’ Installation β’ Usage β’ MCP Integration β’ API Reference β’ Contributing
</div>
π Overview
Dental AI Treatment Planner is an intelligent system that combines computer vision, retrieval-augmented generation (RAG), and the Model Context Protocol (MCP) to provide comprehensive dental diagnosis and treatment planning.
Key Capabilities
- π X-Ray Analysis: YOLOv11-based detection of dental conditions from panoramic and periapical X-rays
- π Treatment Planning: Evidence-based recommendations from clinical guidelines (ADA, AAE, FDI)
- π° Cost Estimation: Treatment cost estimates for Dubai/UAE market
- π€ MCP Integration: Seamless integration with Claude, ChatGPT, and other AI assistants
- π REST API: FastAPI-based API for web and mobile applications
- π¨ Interactive UI: Gradio-powered demo interface
ποΈ Architecture
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β Dental AI Treatment Planner β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β YOLOv11 βββββΆβ MCP Server ββββββ RAG Engine β β
β β Detection β β (FastMCP) β β (LangChain) β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β β β β
β βΌ βΌ βΌ β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β Dental X-ray β β Claude/ β β Clinical β β
β β Analysis β β ChatGPT β β Guidelines β β
β ββββββββββββββββ ββββββββββββββββ ββββββββββββββββ β
β β
β OUTPUT: Diagnosis + Treatment Plan + Cost Estimate β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β¨ Features
π¬ Dental Condition Detection
Detects multiple dental conditions from X-ray images:
| Condition | Description | Severity Levels |
|---|---|---|
| Caries | Tooth decay/cavities | Mild, Moderate |
| Deep Caries | Decay approaching pulp | Severe, Critical |
| Periapical Lesion | Infection at root tip | Critical |
| Impacted Tooth | Teeth unable to erupt | Moderate |
| Root Canal | Endodontic treatment | Treatment |
| Crown | Dental crown restoration | Treatment |
| Implant | Dental implant | Treatment |
| Bone Loss | Periodontal bone loss | Severe |
π Clinical Guidelines Integration
RAG-powered retrieval from:
- American Dental Association (ADA)
- American Association of Endodontists (AAE)
- FDI World Dental Federation
- European Society of Endodontology (ESE)
π€ MCP Tools
| Tool | Description |
|---|---|
dental_analyze_xray |
Analyze dental X-ray images |
dental_get_treatment_plan |
Generate evidence-based treatment plans |
dental_search_guidelines |
Search clinical guidelines |
dental_get_cost_estimate |
Get treatment cost estimates |
dental_complete_diagnosis |
Full diagnosis workflow |
π¦ Installation
Prerequisites
- Python 3.10 or higher
- pip or uv package manager
- CUDA (optional, for GPU acceleration)
Quick Install
# Clone the repository
git clone https://github.com/Kannaseka/Dental-AI-Treament-Planner.git
cd dental-ai-treatment-planner
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -e .
# Or using uv (faster)
uv pip install -e .
Install with Development Dependencies
pip install -e ".[dev]"
π Usage
1. Command Line Interface
# Analyze an X-ray
dental-ai analyze --image path/to/xray.jpg
# Get treatment plan
dental-ai treatment --condition "Deep Caries" --severity "severe"
# Start MCP server
dental-mcp --transport stdio
2. Python API
from src.vision.dental_analyzer import DentalVisionAnalyzer
from src.rag.dental_rag import DentalGuidelinesRAG
# Initialize analyzer
analyzer = DentalVisionAnalyzer()
# Analyze X-ray
result = analyzer.analyze("dental_xray.jpg")
print(f"Risk Score: {result.risk_score}")
print(f"Detections: {len(result.detections)}")
# Get treatment plan
rag = DentalGuidelinesRAG()
plan = rag.generate_treatment_plan("Caries", "moderate")
print(f"Treatment: {plan.primary_treatment.name}")
print(f"Cost: {plan.primary_treatment.estimated_cost_range}")
3. REST API
# Start the API server
uvicorn src.api.main:app --host 0.0.0.0 --port 8000
# Or with auto-reload for development
uvicorn src.api.main:app --reload
API Endpoints:
# Analyze X-ray
curl -X POST "http://localhost:8000/api/v1/analyze" \
-F "file=@dental_xray.jpg"
# Get treatment plan
curl -X POST "http://localhost:8000/api/v1/treatment-plan" \
-H "Content-Type: application/json" \
-d '{"condition": "Caries", "severity": "moderate"}'
# Get cost estimate
curl -X POST "http://localhost:8000/api/v1/cost-estimate" \
-H "Content-Type: application/json" \
-d '{"treatments": ["Root Canal - Molar", "Crown - Zirconia"]}'
4. Gradio Demo
# Start interactive demo
python src/api/demo.py
# Opens at http://localhost:7860
π MCP Integration
With Claude Desktop
Add to your Claude Desktop configuration (claude_desktop_config.json):
{
"mcpServers": {
"dental-ai": {
"command": "python",
"args": ["-m", "src.mcp_server.server"],
"cwd": "/path/to/dental-ai-treatment-planner"
}
}
}
With Claude Code
# Add MCP server
claude mcp add dental-ai -- python -m src.mcp_server.server
Example MCP Conversation
User: Analyze this dental X-ray and create a treatment plan
Claude: [Uses dental_analyze_xray tool]
I've analyzed the X-ray. Here are my findings:
**Risk Score: 65/100**
**Detected Conditions:**
1. Deep Caries (Tooth #36)
- Severity: Severe
- Confidence: 78%
**Recommended Treatment:**
Stepwise Caries Excavation
- Estimated Cost: AED 800 - 1,800
- Success Rate: 85%
**Recommendations:**
- Schedule treatment within 1-2 weeks
- Consider root canal if pulp exposure occurs
π° Cost Reference (Dubai Market)
| Treatment | Cost Range (AED) |
|---|---|
| Fluoride Treatment | 150 - 400 |
| Composite Filling | 400 - 1,000 |
| Root Canal (Anterior) | 1,500 - 3,500 |
| Root Canal (Molar) | 2,500 - 5,500 |
| Crown (Zirconia) | 2,500 - 5,000 |
| Dental Implant | 5,000 - 12,000 |
| Surgical Extraction | 1,200 - 3,500 |
π Project Structure
dental-ai-treatment-planner/
βββ src/
β βββ vision/
β β βββ dental_analyzer.py # YOLOv11 X-ray analysis
β βββ rag/
β β βββ dental_rag.py # Clinical guidelines RAG
β βββ mcp_server/
β β βββ server.py # MCP server implementation
β βββ api/
β βββ main.py # FastAPI REST API
β βββ demo.py # Gradio demo interface
βββ data/
β βββ models/ # YOLO model weights
β βββ guidelines/ # Clinical guidelines PDFs
β βββ sample_xrays/ # Sample X-ray images
βββ tests/
βββ docs/
βββ pyproject.toml
βββ README.md
π§ͺ Testing
# Run all tests
pytest
# Run with coverage
pytest --cov=src --cov-report=html
# Run specific test
pytest tests/test_vision.py -v
π§ Configuration
Environment Variables
# Model configuration
export DENTAL_MODEL_PATH=/path/to/dental_yolo.pt
export CONFIDENCE_THRESHOLD=0.25
# API configuration
export API_HOST=0.0.0.0
export API_PORT=8000
# RAG configuration
export EMBEDDING_MODEL=sentence-transformers/all-MiniLM-L6-v2
π£οΈ Roadmap
- [x] YOLOv11 dental condition detection
- [x] RAG-based treatment planning
- [x] MCP server implementation
- [x] FastAPI REST API
- [x] Gradio demo interface
- [ ] DICOM image support
- [ ] Multi-language support (Arabic)
- [ ] Integration with PACS systems
- [ ] Mobile app (React Native)
- [ ] Cloud deployment (AWS/GCP)
π License
This project is licensed under the MIT License - see the LICENSE file for details.
π€ Author
Kannan Sekar
AI/ML Engineer | Computer Vision & LLM Applications
Building production AI systems for healthcare and e-commerce. 15+ years of software engineering experience with a focus on deploying scalable AI solutions.
π Dubai, UAE | Open to remote opportunities
π LinkedIn | Email
π Acknowledgments
- Ultralytics for YOLOv11
- Anthropic for MCP and Claude
- LangChain for RAG framework
- Dentex Dataset for training data
- ADA, AAE, FDI for clinical guidelines
β οΈ Disclaimer
This tool is designed to assist dental professionals and should not replace professional clinical judgment. All diagnoses and treatment plans should be confirmed by qualified dental practitioners. Not intended for direct patient use without professional supervision.
<div align="center">
β Star this repo if you find it useful!
Made with β€οΈ for the dental AI community
</div>
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.