openemis-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OPENEMIS_API_KEY | Yes | OpenEMIS API key | |
| OPENEMIS_BASE_URL | Yes | Base URL of the OpenEMIS Core instance (e.g., https://demo.openemis.org/core) | |
| OPENEMIS_LOG_FILE | No | Path to log file for verbose logging | |
| OPENEMIS_PASSWORD | Yes | OpenEMIS administrator password | |
| OPENEMIS_USERNAME | Yes | OpenEMIS administrator username | |
| OPENEMIS_LOG_VERBOSE | No | Enable verbose logging (e.g., '1') | |
| OPENEMIS_CORE_IN_OPERATOR | No | Set to 'off' for pre-5.10 OpenEMIS cores that lack native multi-id GET support | on |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| openemis_healthA | Check whether the configured OpenEMIS API endpoint is reachable and credentials are valid. Does a real login round-trip. |
| openemis_getA | Fetch data from an OpenEMIS v5 resource (Core 5.13.0). If |
| openemis_list_domainsA | List all available domains with summaries, endpoint counts, and a hint to explore via openemis_discover. |
| openemis_discoverA | Discover endpoints and playbooks related to a topic. Searches domains, families, and playbooks by name, summary, and description. |
| openemis_list_playbooksA | List all available playbooks with their id, title, audience, and domain. |
| openemis_get_playbookA | Get the full playbook details including steps and coverage by playbook id. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose: health check, generic data fetch, domain listing, topic discovery, playbook listing, and playbook details. There is no overlap or ambiguity.
All tools follow the consistent 'openemis_' prefix with snake_case names (health, get, list_domains, discover, list_playbooks, get_playbook), providing a clear and predictable pattern.
With 6 tools covering health, data retrieval, domain exploration, and playbook access, the count is well-scoped for a focused integration without being too sparse or bloated.
The tool set provides comprehensive read access via openemis_get and discovery tools, but lacks write operations (create, update, delete). For a read-oriented server this is acceptable, though adding CRUD would improve completeness.