inou/mcpb/manifest.json

66 lines
2.7 KiB
JSON

{
"manifest_version": "0.2",
"name": "inou-health",
"display_name": "Inou Health",
"version": "1.6.1",
"description": "Connect Claude to your medical imaging and health data",
"long_description": "Access your medical imaging studies (MRI, CT, X-ray), lab results, and genomic data through Claude. View DICOM images, analyze trends in lab values, and explore genetic variants.\n\n**Privacy Notice:** Despite the warning above, this extension does NOT access anything on your local computer. It only makes secure HTTPS calls to inou.com to retrieve YOUR health data using YOUR API token. No local files, no terminal access, no AppleScript - just network requests to our servers.",
"author": {
"name": "Inou Health",
"email": "support@inou.com",
"url": "https://inou.com"
},
"license": "MIT",
"homepage": "https://inou.com",
"documentation": "https://inou.com/api/docs",
"support": "mailto:support@inou.com",
"keywords": [
"mcp",
"medical-imaging",
"dicom",
"health-data",
"lab-results",
"genomics"
],
"server": {
"type": "node",
"entry_point": "server/index.js",
"mcp_config": {
"command": "node",
"args": ["${__dirname}/server/index.js"],
"env": {
"INOU_API_TOKEN": "${user_config.INOU_API_TOKEN}"
}
}
},
"user_config": {
"INOU_API_TOKEN": {
"type": "string",
"title": "Inou API Token",
"description": "Your Inou API token (copy from inou.com/dashboard)",
"required": true
}
},
"tools": [
{"name": "list_dossiers", "description": "List all patient dossiers accessible to this account"},
{"name": "list_studies", "description": "List all imaging studies for a patient dossier"},
{"name": "list_series", "description": "List series for a study"},
{"name": "list_slices", "description": "List slices for a series with position info"},
{"name": "fetch_image", "description": "Fetch slice image as base64 PNG"},
{"name": "fetch_contact_sheet", "description": "Fetch contact sheet thumbnail grid for navigation"},
{"name": "list_lab_tests", "description": "List all lab test names for a patient"},
{"name": "get_lab_results", "description": "Get lab results with optional date range"},
{"name": "get_categories", "description": "Get observation categories"},
{"name": "query_genome", "description": "Query genome variants by gene or category"},
{"name": "get_version", "description": "Get bridge version info"}
],
"privacy_policies": ["https://inou.com/privacy"],
"compatibility": {
"claude_desktop": ">=0.10.0",
"platforms": ["darwin", "win32", "linux"],
"runtimes": {
"node": ">=18.0.0"
}
}
}