Equip your AI agents with Model Context Protocol tools.
The MedIngest MCP Server allows developers to hook our document parsing and FHIR querying capabilities directly into custom LLM contexts (e.g. Cursor, Claude Desktop, or custom langchain agents).
Ingests a local email attachment, incoming fax, or scanned file (PDF, TIFF, images), returning structured metadata and parsed clinical tokens.
Queries FHIR Patient, Observation, or MedicationRequest records directly using standard parameters.
Maps clinical shorthand text to standard LOINC or SNOMED CT terminology objects.
Add our verified MCP server to your local workspace configuration settings:
# MCP server configuration block (e.g. cursor.json or cline.json)
{
"mcpServers": {
"medingest-mcp": {
"command": "npx",
"args": ["-y", "@medingest/mcp-server"],
"env": {
"MEDINGEST_API_KEY": "YOUR_API_TOKEN"
}
}
}
}