update-phrase
Modify the text of a specific phrase by its ID using the Phrases MCP Server. Ensure accurate phrase updates with structured input for ID and new text.
Instructions
Updates the text of a phrase by its ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | Phrase ID | |
phrase | Yes | New phrase text |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"id": {
"description": "Phrase ID",
"minimum": 0,
"type": "number"
},
"phrase": {
"description": "New phrase text",
"maxLength": 200,
"type": "string"
}
},
"required": [
"id",
"phrase"
],
"type": "object"
}