MCP_GraReco is a server that provides AI assistants with grammar recommendation capabilities through the Anthropic Claude API. Built with TypeScript and Express, it processes text inputs using specialized prompts (elementary, standard, and timeline) to generate grammar corrections and recommendations. The server implements Server-Sent Events (SSE) for real-time communication, containerizes the application with Docker for easy deployment, and includes configurable parameters for the Anthropic model. This implementation is particularly valuable for users who need grammar assistance without leaving their AI assistant interface.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Echo back the input message. Input: message (string): The message to be echoed. Returns: The echoed message in text.
Display all environment variables, useful for debugging MCP server settings. Input: None. Returns: A JSON string of all environment variables.
Fetch a website from a URL and convert it to graphic recording format HTML. Input: url (string): The URL of the website to convert; promptType (enum: 'standard' | 'elementary' | 'timeline', default: 'standard'): The prompt type to use. Returns: The save path of the generated HTML file. Progress notifications will be sent during processing.
Convert text to graphic recording format HTML. Input: text (string): The text to convert; promptType (enum: 'standard' | 'elementary' | 'timeline', default: 'standard'): The prompt type to use. Returns: The save path of the generated HTML file. Progress notifications will be sent during processing.