mcp-grammar-checker
This MCP server enables grammar and style checking of text using LanguageTool, providing a tool to check text and receive suggestions for issues.
README
mcp-grammar-checker
A small MCP server that exposes LanguageTool's grammar and style checking as a tool, so an MCP client (Claude Code, Claude Desktop, or any other MCP-compatible host) can check text for issues directly.
Why
Built to give an AI coding assistant a real, tool-backed way to check grammar/style — rather than relying only on the model's own judgment — while learning MCP hands-on for a Solution Architect AI application.
Process note
First built by hand (directly against the official mcp SDK, discovering its current API by inspecting the installed package rather than following a tutorial). Later rebuilt against Anthropic's official mcp-server-dev:build-mcp-server skill's guided process, which confirmed the deployment choice (local stdio — this is a single-user personal tool, not something meant for distribution) but changed the framework: it recommends FastMCP 3.x (the fastmcp package on PyPI, by jlowin) for Python servers, not the frozen FastMCP 1.0 bundled inside the mcp SDK. This repo now reflects that second, guided pass.
Tool
check_grammar(text: str, language: str = "de-DE") -> str
Checks the given text using the public LanguageTool API and returns a formatted list of issues found (message, suggested replacements, surrounding context), or a confirmation that no issues were found.
Setup
Requires Python 3.12+ and uv.
git clone <this-repo>
cd mcp-grammar-checker
uv sync
Running standalone
uv run python server.py
The server communicates over stdio and expects to be launched by an MCP client, not run interactively.
Using with Claude Code / Claude Desktop
Add to your MCP config (e.g. .claude/settings.json or the Claude Desktop config file):
{
"mcpServers": {
"grammar-checker": {
"command": "uv",
"args": ["run", "--directory", "/absolute/path/to/mcp-grammar-checker", "python", "server.py"]
}
}
}
Restart the client, and the check_grammar tool will be available.
Notes
- Uses the public LanguageTool API (
api.languagetool.org), which is rate-limited. For heavier use, LanguageTool can be self-hosted. - Supports any language LanguageTool supports (e.g.
en-US,de-DE,fr) via thelanguageparameter.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.