Install
$ agentstack add mcp-cadasto-openehr-assistant-mcp ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
The openEHR Assistant MCP Server
[](https://github.com/cadasto/openehr-assistant-mcp/actions/workflows/pr-validation.yml) [](https://github.com/cadasto/openehr-assistant-mcp/actions/workflows/release.yml) [](https://opensource.org/licenses/MIT) [](https://www.php.net/) [](https://modelcontextprotocol.io/)
An MCP server that helps AI assistants work with openEHR — archetypes, templates, AQL, terminology, and specifications.
Working with openEHR means navigating the Clinical Knowledge Manager (CKM), intricate type systems, and ADL syntax rules. This server gives MCP clients (Claude Desktop, Cursor, LibreChat, …) direct access to those resources so assistants can help with archetype exploration, semantic explanation, language translation, syntax correction, and design reviews.
> Pre-release: expect frequent updates and breaking changes until version 1.0.
> Recommended: pair this server with the openEHR Assistant Plugin — skills, prompts, and agents that guide assistants through openEHR workflows. Claude Code users can install it from the Cadasto Plugin Marketplace.
Table of Contents
- [Features](#features)
- [Quick Start](#quick-start)
- [Available MCP Elements](#available-mcp-elements)
- [Documentation](#documentation)
- [Contributing](#contributing)
- [Acknowledgments](#acknowledgments)
----
Features
- Works with any MCP client (Claude Desktop, Cursor, LibreChat, …).
- Tools, prompts, resources, and completions for openEHR archetypes, templates, AQL, terminology, and specifications.
- Guided prompts orchestrate multi-step modelling and review workflows.
- Use the hosted endpoint, or run locally (transports: streamable HTTP and stdio).
----
Quick Start
The quickest path is the hosted endpoint — point your MCP client at it:
| | | |---|---| | URL | https://openehr-assistant-mcp.apps.cadasto.com/ | | Transport | streamable-http |
{
"mcpServers": {
"openehr-assistant-mcp": {
"type": "streamable-http",
"url": "https://openehr-assistant-mcp.apps.cadasto.com/"
}
}
}
To run your own instance (Docker or stdio) and for per-client setup (Claude Desktop, LibreChat, Cursor, Junie), see [docs/install.md](docs/install.md).
----
Available MCP Elements
Tools
CKM (Clinical Knowledge Manager)
ckm_archetype_search— List Archetypes from CKM matching search criteriackm_archetype_get— Get a CKM Archetype by its identifierckm_template_search— List Templates (OET/OPT) from CKM matching search criteriackm_template_get— Get a CKM Template (OET/OPT) by its identifier
openEHR Terminology
terminology_resolve— Resolve a terminology concept ID to its rubric, or find the ID for a given rubric across groups
Guides (model-reachable)
guide_search— Search bundled guides and return short snippets with canonicalopenehr://guidesURIsguide_get— Retrieve guide content by URI or (category, name), chunked by defaultguide_adl_idiom_lookup— Look up targeted ADL idiom snippets for common modelling patterns
Examples (curated artefacts)
examples_search— Search bundled examples (AQL, FLAT/STRUCTURED payloads, ADL archetypes) and return snippets withopenehr://examplesURIsexamples_get— Retrieve an example by URI or (kind, name)
openEHR Type specification
type_specification_search— List bundled openEHR Type specifications matching search criteriatype_specification_get— Retrieve an openEHR Type specification (as BMM JSON)
Prompts
Optional prompts that guide AI assistants through common openEHR and CKM workflows using the tools above.
ckm_archetype_explorer— Discover and fetch CKM Archetype definitions (ADL/XML/Mindmap)ckm_template_explorer— Discover and fetch CKM Template definitions (OET/OPT)type_specification_explorer— Discover and fetch openEHR Type specifications (BMM JSON)terminology_explorer— Discover and retrieve openEHR terminology (groups and codesets)guide_explorer— Discover and retrieve openEHR implementation guidesexplain_archetype— Explain an archetype's semantics (audiences, elements, constraints)explain_template— Explain openEHR Template semanticsexplain_aql— Explain an AQL query's intent, structure, and semanticsexplain_simplified_format— Explain context, paths, and data elements of a FLAT/STRUCTURED payloadtranslate_archetype_language— Translate an archetype's terminology section between languages with safety checksfix_adl_syntax— Correct or improve ADL syntax without changing semantics; before/after + notesdesign_or_review_archetype— Design or review an archetype for a concept/RM class, with structured outputdesign_or_review_template— Design or review an openEHR Template (OET)design_or_review_aql— Design or review an AQL query, using the AQL guidesdesign_or_review_simplified_format— Design or review a FLAT/STRUCTURED instance, using the Simplified Formats guides
Completion Providers
Parameter suggestions in MCP clients when invoking tools or resources.
Guides— guide{name}values per category (openehr://guides/{category}/{name})Examples— example{name}values per kind (openehr://examples/{kind}/{name})SpecificationComponents—{component}values fromresources/bmm(openehr://spec/type/{component}/{name})
Resources
Exposed via #[McpResource] and fetchable by clients using openehr://… URIs.
- Guides —
openehr://guides/{category}/{name}(Markdown). Categories:archetypes,templates,aql,simplified_formats,specs(per-document spec digests),howto(toolchain how-tos). Retrieve viaguide_search/guide_get. - e.g.
openehr://guides/aql/principles,openehr://guides/specs/rm-ehr,openehr://guides/howto/spec-lookup - Examples —
openehr://examples/{kind}/{name}. Kinds:aql,flat,structured(Markdown: metadata header + fenced code block),archetypes(native.adl,text/plain). Retrieve viaexamples_search/examples_get. - e.g.
openehr://examples/aql/latest_blood_pressure_per_ehr,openehr://examples/archetypes/openEHR-EHR-OBSERVATION.blood_pressure.v2 - Type Specifications —
openehr://spec/type/{component}/{name}(BMM JSON). - e.g.
openehr://spec/type/RM/COMPOSITION,openehr://spec/type/AM/ARCHETYPE - Terminology —
openehr://terminology(JSON): all openEHR terminology groups and codesets.
----
Documentation
- [docs/install.md](docs/install.md) — hosted & local setup, client configurations
- [docs/development.md](docs/development.md) — Docker dev environment, Makefile, configuration, MCP Inspector
- [docs/conventions.md](docs/conventions.md) — coding standard and MCP authoring conventions
- [docs/testing.md](docs/testing.md) — tests, static analysis, MCP conformance
- [docs/](docs/README.md) — the Specification-Driven Development spec set (requirements, architecture, decisions, traceability)
- [CONTRIBUTING.md](CONTRIBUTING.md) — how to contribute · [AGENTS.md](AGENTS.md) — repository instructions for AI coding agents
----
Contributing
Contributions are welcome — see [CONTRIBUTING.md](CONTRIBUTING.md) for setup, conventions, and how to propose changes, and [CHANGELOG.md](CHANGELOG.md) for notable changes.
License: MIT — see [LICENSE](LICENSE).
----
Acknowledgments
This project is inspired by and grateful to:
- The original Python openEHR MCP Server: https://github.com/deak-ai/openehr-mcp-server
- Seref Arikan, Sidharth Ramesh — for inspiration on MCP integration
- The PHP MCP Server framework: https://github.com/modelcontextprotocol/php-sdk
- Ocean Health Systems for the Clinical Knowledge Manager (CKM), an essential tool for the openEHR community that enables collaborative development and sharing of archetypes and templates.
- freshEHR for the CGEM framework (Contextual situation, Global background, Event assessment, Managed response), which informs our template-design guides (CC-BY).
- Silje Ljosland Bakke — for contributions to the archetype and language related guides.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Cadasto
- Source: Cadasto/openehr-assistant-mcp
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.