loading…
Search for a command to run...
loading…
This MCP server provides tools to calculate and compare insurance premiums across term, health, and vehicle policies based on age and coverage. It allows users
This MCP server provides tools to calculate and compare insurance premiums across term, health, and vehicle policies based on age and coverage. It allows users to refine health insurance estimates by factoring in smoking status and pre-existing conditions.
A simple Model Context Protocol (MCP) server that provides insurance premium calculation services. This server implements three main tools for calculating and comparing insurance premiums.
npm install
To run the MCP server with the inspector:
npx @modelcontextprotocol/inspector node index.js
The server will start and display "Insurance Premium Calculator MCP Server is running!" when ready.
Calculates basic insurance premium based on age, coverage and policy type.
Parameters:
age (number): Age of the person (18-80)coverage_amount (number): Coverage amount in rupeespolicy_type (enum): Type of insurance policy ("term", "health", "vehicle")Calculates health insurance premium including pre-existing conditions.
Parameters:
age (number): Age of the personcoverage_amount (number): Coverage amount in rupeespre_existing_condition (enum): Pre-existing health condition ("none", "diabetes", "hypertension", "heart_disease")smoker (boolean): Whether the person is a smokerCompares premium for all policy types for a given age and coverage.
Parameters:
age (number): Age of the personcoverage_amount (number): Coverage amount in rupeesnpx @modelcontextprotocol/inspector node index.js
Claude Desktop provides an intuitive interface for interacting with MCP servers without having to write custom code. It supports tool discovery, parameter validation, and response visualization.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"insurance-premium-calculator": {
"command": "npx",
"args": []
}
}
}