dental-ai
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., "@dental-aianalyze this x-ray for cavities and infections"
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.
π¦· Dental AI Treatment Planner
AI-Powered Dental Treatment Planning with YOLOv11, MCP Server, and RAG
Features β’ Installation β’ Usage β’ MCP Integration β’ API Reference β’ Contributing
π 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
Related MCP server: LangChain Anthropic MCP Server
ποΈ 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 |
| Analyze dental X-ray images |
| Generate evidence-based treatment plans |
| Search clinical guidelines |
| Get treatment cost estimates |
| 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 stdio2. 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 --reloadAPI 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.serverExample 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
YOLOv11 dental condition detection
RAG-based treatment planning
MCP server implementation
FastAPI REST API
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.
β Star this repo if you find it useful!
Made with β€οΈ for the dental AI community
This server cannot be installed
Maintenance
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/Kannaseka/Dental-AI-Treament-Planner'
If you have feedback or need assistance with the MCP directory API, please join our Discord server