dhis2_register_compatible_server
Register details of a compatible MCP server, including name, version, capabilities, and description, to streamline setup for DHIS2 composition workflows.
Instructions
Register information about a compatible MCP server for composition workflows
Input Schema
Name | Required | Description | Default |
---|---|---|---|
capabilities | Yes | Server capabilities | |
description | Yes | Description of the server | |
name | Yes | Name of the MCP server | |
version | Yes | Version of the MCP server |
Input Schema (JSON Schema)
{
"properties": {
"capabilities": {
"description": "Server capabilities",
"items": {
"properties": {
"domain": {
"type": "string"
},
"operations": {
"items": {
"type": "string"
},
"type": "array"
},
"version": {
"type": "string"
}
},
"required": [
"domain",
"operations",
"version"
],
"type": "object"
},
"type": "array"
},
"description": {
"description": "Description of the server",
"type": "string"
},
"name": {
"description": "Name of the MCP server",
"type": "string"
},
"version": {
"description": "Version of the MCP server",
"type": "string"
}
},
"required": [
"name",
"version",
"capabilities",
"description"
],
"type": "object"
}