getCategory
Retrieve a specific category using its unique ID from the memo-mcp server, ensuring accurate and targeted data retrieval for memo management.
Instructions
Get a single category by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The ID of the category |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "The ID of the category",
"type": "string"
}
},
"required": [
"id"
],
"type": "object"
}