get-phrase-by-id
Retrieve a specific phrase using its unique ID from the Phrases MCP Server, enabling quick access to stored inspirational content for direct use or management.
Instructions
Returns a phrase by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Phrase ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Phrase ID",
"minimum": 0,
"type": "number"
}
},
"required": [
"id"
],
"type": "object"
}