Mentor MCP Server

by cyanheads
Verified

writing_feedback

Provides feedback on a piece of writing, such as an essay, article, or technical documentation, focusing on clarity, grammar, style, structure, and overall effectiveness.

Input Schema

NameRequiredDescriptionDefault
textYesThe text to review
writing_typeYesThe type of writing (e.g., 'essay', 'article', 'documentation')

Input Schema (JSON Schema)

{ "properties": { "text": { "description": "The text to review", "type": "string" }, "writing_type": { "description": "The type of writing (e.g., 'essay', 'article', 'documentation')", "type": "string" } }, "required": [ "text", "writing_type" ], "type": "object" }