Skip to main content
Glama

dhis2-mcp

A read-only MCP server for DHIS2 health data. It runs on stdio.

The server is built for small local models. Each tool returns compact JSON, not the raw DHIS2 response. A small context window is a budget — the tools spend as little of it as possible.

Tools

Tool

What it does

search_indicators

Search DHIS2 indicators by name. Returns id, name, and description.

query_analytics

Get aggregated values for one indicator, split by period, for one organisation unit.

Run search_indicators first to get an indicator id. Then pass the id to query_analytics.

Related MCP server: WHO MCP Server

Requirements

  • Node.js 20 or later.

  • A DHIS2 instance. The default is the public play demo, so you can start with no setup.

Install and build

git clone https://github.com/brianmituka/dhis2-mcp.git
cd dhis2-mcp
npm install
npm run build

Configuration

Set these environment variables. All three are optional.

Variable

Default

Meaning

DHIS2_BASE_URL

https://play.im.dhis2.org/stable-2-43-1

Base URL of the DHIS2 instance

DHIS2_USERNAME

admin

Basic auth username

DHIS2_PASSWORD

district

Basic auth password

The play demo resets every night. Use the host play.im.dhis2.org, not play.dhis2.org — the old host redirects to an HTML page.

Use with LM Studio

LM Studio 0.3.17 or later supports MCP. Open the Program tab, then edit mcp.json. Add this entry:

{
  "mcpServers": {
    "dhis2": {
      "command": "node",
      "args": ["/absolute/path/to/dhis2-mcp/dist/index.js"],
      "env": {
        "DHIS2_BASE_URL": "https://play.im.dhis2.org/stable-2-43-1",
        "DHIS2_USERNAME": "admin",
        "DHIS2_PASSWORD": "district"
      }
    }
  }
}

Replace the path with your clone location. Restart the model chat after you edit the file.

Use with other MCP clients

Any stdio MCP client works. For Claude Code:

claude mcp add dhis2 -- node /absolute/path/to/dhis2-mcp/dist/index.js

Test with MCP Inspector

npx @modelcontextprotocol/inspector node dist/index.js

The Inspector does not reload the server after a rebuild. Click Restart in the Inspector after every npm run build.

License

MIT. See LICENSE.

Available Tools

2 tools
query_analyticsQuery DHIS2 analyticsA

Get aggregated values for one indicator, split by period, for one organisation unit. Run search_indicators first to get the indicator id.

ParametersJSON Schema
NameRequiredDescriptionDefault
periodNoDHIS2 period: 'LAST_12_MONTHS', 'THIS_YEAR', '2025', or '202501'LAST_12_MONTHS
org_unitNoOrganisation unit id. 'USER_ORGUNIT' means the account's root unitUSER_ORGUNIT
indicator_idYesIndicator id, from search_indicators

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations available, the description carries the behavioral burden. It makes clear this is a read-oriented query returning aggregated values by period/org unit, but it does not disclose authentication needs, output shape, or any limitations beyond the single-indicator constraint.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is very concise: two sentences, no filler. The main behavior is front-loaded, and the required workflow hint is placed second, making it easy for an agent to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the necessary prerequisite workflow and the parameters are fully documented in the schema. However, there is no output schema and no discussion of response structure, pagination, result size, or error behavior, so some operational details remain unclear.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema already describes all parameters with defaults and examples, so schema coverage is high. The description adds the prerequisite relationship to search_indicators, but otherwise does not meaningfully expand on what the schema already communicates.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states that the tool returns aggregated values for one indicator, split by period, for one organisation unit. It distinguishes itself from the sibling tool by positioning search_indicators as a prerequisite, making the purpose and scope easy to identify.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells the agent to run search_indicators first to get the indicator id, which is practical workflow guidance. It does not explicitly state when not to use the tool, such as when multiple indicators or multiple organisation units are needed, but the scope is clear enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_indicatorsSearch DHIS2 indicatorsA

Search DHIS2 indicators by name. Returns id, name, and description for each match.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results to return
queryYesSearch text, for example 'ANC'

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description correctly signals that this is a read/search operation and transparently states what will be returned for each match. It does not mention edge cases like empty results, case sensitivity, or search matching behavior, but the core behavioral expectations are disclosed.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is exceptionally efficient: two short sentences with no fluff. The main verb, resource, search target, and expected output shape are all front-loaded. Every word earns its place, supporting quick agent comprehension.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter search tool with no output schema, the description supplies the key return details (id, name, description) and makes the domain clear. Minor missing elements, such as the fact that the limit default is 10 (already in schema) or behavior when no matches exist, are not critical given the simplicity of the tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already documents both parameters with full coverage, but the description adds meaning by clarifying that the query parameter searches against the indicator name specifically. This helps the agent understand that the if the query should be treated as a name filter rather than a keyword search across all fields.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action ('Search'), a specific resource ('DHIS2 indicators'), and a scoping criterion ('by name'), and includes the exact return fields ('id, name, and description'). This clearly distinguishes it from the sibling tool query_analytics, which very likely focuses on analytical data rather than indicator metadata.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool should be used when an agent needs to find indicators by their name, but it does not explicitly discuss when another tool should be preferred or contrast itself with query_analytics. There is no exclusionary guidance, leaving usage somewhat to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updatesv0.2.0
    • First observedquery_analytics
    • First observedsearch_indicators

TDQS

A3.9/5.0

Scored across 2 tools

Disambiguation5/5

The two tools are clearly distinct: search_indicators handles metadata discovery while query_analytics retrieves aggregated data. The explicit dependency between them removes any ambiguity.

Naming Consistency5/5

Both tools follow the same verb_noun pattern with snake_case naming (search_indicators, query_analytics), making the naming perfectly consistent and predictable.

Tool Count2/5

Two tools feels very thin for a DHIS2 server, which typically covers a broad health information system domain. The server only exposes a small analytics niche, so the count does not match the implied scope.

Completeness3/5

The core workflow of searching for indicators then querying analytics is present, but there is no way to discover organization units, periods, or other metadata within the server. This forces agents to obtain those identifiers from outside the tool surface.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    B
    quality
    F
    maintenance
    Enables comprehensive interaction with DHIS2 health information systems through 40+ tools covering complete Web API functionality. Supports data management, tracker programs, analytics, and bulk operations for DHIS2 development and administration.
    47
    8 npm
    7
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    Provides access to the World Health Organization's Global Health Observatory data, enabling AI assistants to search, retrieve, and analyze comprehensive health indicators, country statistics, disease burden data, and regional health trends through WHO's OData API.
    1
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Connects DHIS2 health information systems to AI assistants via the Model Context Protocol, enabling natural language queries for analytics, metadata, and tracker data.
    13
    MIT