get-phrase-by-name
Retrieve inspirational phrases by specifying the author's name using the Phrases MCP Server tool. Ideal for accessing curated quotes with attribution.
Instructions
Returns a phrase by author name.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Author name |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Author name",
"maxLength": 20,
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}