add-note
Store and organize notes on DICOM medical images using the DICOM-MCP server, enabling efficient management of image-related annotations.
Instructions
Add a new note
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"name",
"content"
],
"type": "object"
}