createOrganization
Adds a new healthcare organization in Medplum MCP Server by specifying the organization's name and optional aliases. Facilitates healthcare data management through structured workflows.
Instructions
Creates a new organization (e.g., hospital, clinic). Requires organization name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
alias | No | A list of aliases for the organization. Optional. | |
name | Yes | The official name of the organization. |
Input Schema (JSON Schema)
{
"properties": {
"alias": {
"description": "A list of aliases for the organization. Optional.",
"items": {
"type": "string"
},
"type": "array"
},
"name": {
"description": "The official name of the organization.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}