dhis2_export_for_composition
Export DHIS2 operation results into a compatible format for integration with other MCP servers, ensuring smooth data transfer and interoperability across systems.
Instructions
Export the result of a DHIS2 operation in a format suitable for other MCP servers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Data to export (usually the result of a previous tool call) | |
metadata | No | Additional metadata to include (optional) | |
targetServer | No | Target MCP server name (optional) | |
toolName | Yes | Name of the tool whose result should be exported |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "Data to export (usually the result of a previous tool call)",
"type": "object"
},
"metadata": {
"description": "Additional metadata to include (optional)",
"type": "object"
},
"targetServer": {
"description": "Target MCP server name (optional)",
"type": "string"
},
"toolName": {
"description": "Name of the tool whose result should be exported",
"type": "string"
}
},
"required": [
"toolName",
"data"
],
"type": "object"
}