Nobra Calculator MCP Server
Provides over 300 medical calculator tools for AI assistants, supporting evidence-based medicine through modular API endpoints.
README
Nobra Calculator 🏥
Modular API for medical calculations and scores developed with FastAPI, originally designed for Nobra, our AI research agent for medical doctors.
🌐 Live API
🚀 Try it now at: https://calculator.nobra.app.br/docs
- Free tier: 10 requests per second
- Commercial use: Contact us at daniel@nobregamedtech.com.br for higher limits
- Self-hosted: Deploy locally using the instructions below
📋 Description
Nobra Calculator is a scalable REST API that allows the calculation of various medical scores and indices. Originally developed as part of the Nobra ecosystem at Nobrega MedTech, we've decided to open-source this powerful tool to benefit the global medical community.
Our company specializes in AI solutions for healthcare, focusing on academic support and medical decision-making tools. This calculator represents our commitment to advancing evidence-based medicine through technology.
Features
- Modular: Specialty-organized structure for easy addition of new medical scores
- Scalable: Clean architecture designed for growth
- Documented: Automatic documentation with Swagger/OpenAPI
- Validated: Robust parameter validation with Pydantic
- Interpreted: Returns not only the result but also the clinical interpretation
🚀 Quick Start
Prerequisites
- Python 3.8+
- pip
Installation
- Clone the repository:
git clone https://github.com/danielxmed/nobra_calculator.git
cd nobra_calculator
- Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install dependencies:
pip install -r requirements.txt
- Run the API:
python main.py
The API will be available at http://localhost:8000
📖 Documentation
Live API Documentation
- Swagger UI: https://calculator.nobra.app.br/docs
- ReDoc: https://calculator.nobra.app.br/redoc
- Health Check: https://calculator.nobra.app.br/health
Local Development Documentation
- Swagger UI:
http://localhost:8000/docs - ReDoc:
http://localhost:8000/redoc - Health Check:
http://localhost:8000/health
🛠️ API Endpoints
Scores
GET /api/scores- Lists all available scoresGET /api/scores/{score_id}- Metadata for a specific scoreGET /api/categories- Lists medical categoriesPOST /api/reload- Reloads scores and calculators
Specific Score Endpoints
Each score also has its dedicated endpoint:
POST /ckd_epi_2021- CKD-EPI 2021POST /cha2ds2_vasc- CHA₂DS₂-VASc ...
System
GET /health- API health checkGET /- API information
📁 Project Structure
nobra_calculator/
├── app/
│ ├── models/
│ │ ├── shared.py # Common models and enums
│ │ └── scores/ # Score models by specialty
│ │ ├── cardiology/
│ │ ├── nephrology/
│ │ ├── pulmonology/
│ │ └── ...
│ ├── routers/
│ │ ├── scores.py # Main router with common endpoints
│ │ └── scores/ # Score endpoints by specialty
│ │ ├── cardiology/
│ │ ├── nephrology/
│ │ └── ...
│ └── services/ # Business Logic
├── calculators/ # Calculation Modules
├── scores/ # Score Metadata (JSON)
├── main.py # Main application
└── requirements.txt # Dependencies
🔧 Adding New Scores
To add a new score:
1. Create the JSON metadata file
Create /scores/{score_id}.json with the score metadata:
{
"id": "new_score",
"title": "Score Title",
"description": "Detailed description",
"category": "medical_specialty",
"parameters": [...],
"result": {...},
"interpretation": {...}
}
2. Create the calculation module
Create /calculators/{score_id}.py:
def calculate_new_score(param1, param2):
# Calculation logic
result = ...
return {
"result": result,
"unit": "unit",
"interpretation": "interpretation"
}
3. Create the Pydantic models
Create /app/models/scores/{specialty}/{score_id}.py:
from pydantic import BaseModel, Field
class NewScoreRequest(BaseModel):
"""Request model for New Score"""
param1: str = Field(..., description="Parameter 1")
param2: float = Field(..., description="Parameter 2")
class NewScoreResponse(BaseModel):
"""Response model for New Score"""
result: float = Field(..., description="Calculation result")
unit: str = Field(..., description="Result unit")
interpretation: str = Field(..., description="Clinical interpretation")
4. Create the router endpoint
Create /app/routers/scores/{specialty}/{score_id}.py:
from fastapi import APIRouter, HTTPException
from app.models.scores.{specialty}.{score_id} import NewScoreRequest, NewScoreResponse
from app.services.calculator_service import calculator_service
router = APIRouter()
@router.post("/new_score", response_model=NewScoreResponse)
async def calculate_new_score(request: NewScoreRequest):
"""Calculate New Score"""
try:
result = calculator_service.calculate_score("new_score", request.dict())
return NewScoreResponse(**result)
except Exception as e:
raise HTTPException(status_code=500, detail=str(e))
5. Update the specialty init.py files
- Add imports to
/app/models/scores/{specialty}/__init__.py - Add router to
/app/routers/scores/{specialty}/__init__.py
6. Reload the scores
curl -X POST http://localhost:8000/api/reload
🧪 Testing
Manual test with curl:
# Health check
curl http://localhost:8000/health
# List scores
curl http://localhost:8000/api/scores
# Calculate CKD-EPI 2021 (Live API)
curl -X POST https://calculator.nobra.app.br/ckd_epi_2021 \
-H "Content-Type: application/json" \
-d '{"sex": "female", "age": 65, "serum_creatinine": 1.2}'
# Calculate CKD-EPI 2021 (Local)
curl -X POST http://localhost:8000/ckd_epi_2021 \
-H "Content-Type: application/json" \
-d '{"sex": "female", "age": 65, "serum_creatinine": 1.2}'
🤝 Contributing
We welcome contributions from the medical and developer communities! This project is part of our mission to democratize access to evidence-based medical tools.
How to Contribute
- Fork the project on GitHub
- Create a feature branch (
git checkout -b feature/amazing-new-score) - Add your medical calculator following our implementation guide
- Test thoroughly - medical calculations require precision
- Include proper references - all scores must cite original publications
- Commit your changes (
git commit -am 'Add APACHE II score') - Push to your branch (
git push origin feature/amazing-new-score) - Open a Pull Request with a detailed description
What We're Looking For
- New medical scores and calculators from any medical specialty
- Bug fixes and improvements to existing calculations
- Documentation enhancements and translations
- Performance optimizations and code quality improvements
- Test coverage improvements
Code Quality Standards
- Follow our established patterns for new calculators
- Include comprehensive input validation
- Provide clinical interpretations for all results
- Cite original research using Vancouver style references
- Test with edge cases and boundary values
📄 License
This project is licensed under Apache 2.0. See the LICENSE file for details.
👨💻 About
Author
Daniel Nobrega Medeiros
- Email: daniel@nobregamedtech.com.br
- GitHub: @danielxmed
- Repository: https://github.com/danielxmed/nobra_calculator.git
Company
Nobrega MedTech - AI Solutions for Healthcare
- Specializing in academic support tools for medical education
- Developing AI-powered medical decision support systems
- Building the Nobra ecosystem - AI research agents for medical professionals
- Committed to evidence-based medicine and open-source healthcare tools
The Nobra Project
This calculator was originally developed as a component of Nobra, our comprehensive AI research agent designed to assist medical doctors with:
- Evidence-based clinical decision making
- Medical literature research and synthesis
- Educational support for medical training
- Real-time access to medical calculators and scores
By open-sourcing this calculator API, we're contributing to the global effort to make medical knowledge more accessible and standardized.
🌟 Support the Project
- ⭐ Star this repository if you find it useful
- 🐛 Report bugs and suggest improvements
- 📖 Contribute new calculators from your medical specialty
- 📢 Share with colleagues in the medical community
- 💼 Contact us for enterprise solutions and custom development
🔌 MCP (Model Context Protocol) Integration
About MCP
The Nobra Calculator API includes built-in MCP server support, allowing AI assistants and other MCP-compatible clients to interact with all medical calculators as native tools.
Connecting to MCP
- MCP Endpoint:
https://calculator.nobra.app.br/mcp - Protocol: Connect via URL using the MCP client of your choice
- Authentication: Same as the main API (rate limits apply)
Important Considerations
⚠️ WARNING: The MCP server exposes over 300 medical calculator tools. When connecting:
- Select specific tools you need in your MCP client interface
- Avoid loading all tools at once - this will exceed most LLM context windows
- Use tool filtering to choose only the medical specialties or specific calculators relevant to your use case
Example Tool Categories
- Cardiology scores (CHA2DS2-VASc, HAS-BLED, etc.)
- Nephrology calculators (CKD-EPI, MDRD, etc.)
- Pulmonology tools (CURB-65, PSI, etc.)
- Emergency medicine scores
- And many more across 15+ medical specialties
MCP Client Configuration
When configuring your MCP client, consider:
- Setting up tool filters by specialty or score name
- Implementing pagination or lazy loading for tool discovery
- Caching frequently used calculator tools
- Managing context window usage efficiently
For more information about MCP integration, refer to the MCP documentation.
⚠️ Medical Disclaimer
IMPORTANT: This API is intended for educational and research purposes only. It should not be used as a substitute for professional clinical judgment. All medical calculations should be verified independently, and clinical decisions should always involve qualified healthcare professionals.
- Always validate results with original references
- Consider patient-specific factors not captured in scores
- Use as a supplement to, not replacement for, clinical expertise
- Verify calculations independently for critical decisions
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。