get_author_review_request_prompt
Drafts a professional email to request author review, including a clear deadline and specific questions for the author.
Instructions
[PRO] Draft a professional email requesting author review with a clear deadline. Concise (<150 words), friendly but firm on deadline, with a specific ask.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| author_name | Yes | ||
| document_type | Yes | ||
| deadline | Yes | ||
| context | Yes | ||
| specific_questions | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Implementation Reference
- server.py:707-728 (handler)The actual tool handler function 'get_author_review_request_prompt' — a decorated @mcp.tool() that returns a prompt string for drafting a professional email requesting author review with a deadline.
@mcp.tool() def get_author_review_request_prompt( author_name: str, document_type: str, deadline: str, context: str, specific_questions: str = "" ) -> str: """ [PRO] Draft a professional email requesting author review with a clear deadline. Concise (<150 words), friendly but firm on deadline, with a specific ask. """ return f"""Write a professional email to {author_name} requesting review of {document_type} with deadline: {deadline}. Context: {context} Specific questions for author: {specific_questions if specific_questions else "General review requested"} Email should be: - Concise (under 150 words) - Friendly but clear on deadline - Include a specific ask (e.g., 'please track changes directly in the document')""" - server.py:996-996 (registration)Tool registration entry in the tool directory listing — maps the tool name to its description 'Draft author review request with deadline'.
("get_author_review_request_prompt", "Draft author review request with deadline"),