Overview
Medical_calculator_MCP is a server designed for performing medical calculations, providing a reliable tool for healthcare professionals and researchers.
To use Medical_calculator_MCP, first install it in your Python project using either uv or pip. Then, you can run the server and interact with it through the command line.
- Easy integration with Python projects using uv or pip - Standalone server for medical calculations - Interactive command line interface for testing and development
- Performing dosage calculations for medications
- Calculating body mass index (BMI) and other health metrics
- Assisting in clinical decision-making through accurate calculations
Add to your AI client
Use these steps to connect Medical_calculator_MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"medical-calculator-mcp-johnyquest7": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-medical-calculator-mcp-johnyquest7"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"medical-calculator-mcp-johnyquest7": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-medical-calculator-mcp-johnyquest7"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"medical-calculator-mcp-johnyquest7": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-medical-calculator-mcp-johnyquest7"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"medical-calculator-mcp-johnyquest7": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-medical-calculator-mcp-johnyquest7"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"medical-calculator-mcp-johnyquest7": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-medical-calculator-mcp-johnyquest7"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"medical-calculator-mcp-johnyquest7": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-medical-calculator-mcp-johnyquest7"
]
}
}
}FAQ
What programming language is Medical_calculator_MCP written in?
Medical_calculator_MCP is written in Python.
Is there a graphical user interface for Medical_calculator_MCP?
Currently, it operates through a command line interface.
Can I contribute to the Medical_calculator_MCP project?
Yes! Contributions are welcome on the project's GitHub page.