create-phrase
Generate and store new inspirational phrases with author attribution using the Phrases MCP Server. Ideal for managing motivational content directly from Claude for Desktop.
Instructions
Creates a new phrase for an author.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Author name | |
phrase | Yes | Phrase text |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Author name",
"maxLength": 50,
"type": "string"
},
"phrase": {
"description": "Phrase text",
"maxLength": 200,
"type": "string"
}
},
"required": [
"name",
"phrase"
],
"type": "object"
}