Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

Bln Mcp Grammar Server

БесплатноНе проверен

MCP Server: L1-aware grammar, style, translation & tone tools. 70 local rules, zero API keys needed. Powered by BeLikeNative.

GitHubEmbed

Описание

MCP Server: L1-aware grammar, style, translation & tone tools. 70 local rules, zero API keys needed. Powered by BeLikeNative.

README

BeLikeNative License: MIT GitHub Actions MCP Server

BeLikeNative MCP Server

A Model Context Protocol (MCP) server that provides grammar checking, writing improvement, translation, and tone adjustment tools to AI clients like Claude Desktop, ChatGPT, Cursor, and others.

No API key required. Grammar and style checks use a local rule-based engine. Translation and tone adjustment return structured prompts for the host AI to process.

Tools

Tool Description Processing
check_grammar Check grammar, spelling, and punctuation with L1-aware explanations Local rule-based (50+ regex rules)
improve_writing Analyze text for style, wordiness, passive voice, sentence length Local rule-based + style guidelines
translate Translate text between languages with natural, fluent output Returns prompt for host AI
adjust_tone Adjust text tone (formal, casual, professional, diplomatic, etc.) Returns prompt for host AI

Prerequisites

  • Node.js 18+

That's it. No API keys, no environment variables, no external services.

Installation

cd mcp-server
pnpm install

Running Standalone

pnpm start

The server communicates via stdio (stdin/stdout). It is designed to be launched by an MCP client, not run interactively.

MCP Client Configuration

Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "belikenative": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server/src/index.mjs"]
    }
  }
}

Claude Code

Add to your Claude Code MCP settings:

{
  "mcpServers": {
    "belikenative": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server/src/index.mjs"]
    }
  }
}

Cursor

Add to your Cursor MCP config (.cursor/mcp.json in your project or ~/.cursor/mcp.json globally):

{
  "mcpServers": {
    "belikenative": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server/src/index.mjs"]
    }
  }
}

Windsurf / Other MCP Clients

Any MCP client that supports stdio transport can use this server. Point it at node src/index.mjs. No environment variables needed.

Tool Schemas

check_grammar

{
  "text": "string (required, max 6000 chars)",
  "language": "string (optional, default 'en') -- writer's native language for L1-tailored explanations"
}

improve_writing

{
  "text": "string (required, max 6000 chars)",
  "style": "enum: academic | business | creative | technical | simple | concise (optional, default 'business')"
}

translate

{
  "text": "string (required, max 6000 chars)",
  "source_language": "string (required) -- e.g. 'en', 'English', 'fr'",
  "target_language": "string (required) -- e.g. 'es', 'Spanish', 'de'"
}

adjust_tone

{
  "text": "string (required, max 6000 chars)",
  "tone": "enum: formal | casual | friendly | professional | persuasive | confident | empathetic | diplomatic (required)"
}

Architecture

src/
  index.mjs    -- MCP server entry point (stdio transport, tool registration)
  tools.mjs    -- Tool definitions (JSON schemas) and handler functions
  rules.mjs    -- Local grammar rules engine (50+ regex patterns, style analyzer)
  • Transport: stdio (standard for MCP)
  • Grammar/Style: Local rule-based engine (no external API calls)
  • Translate/Tone: Returns structured prompts for the host AI client to process
  • Logging: All logs go to stderr (stdout is reserved for MCP protocol)
  • Error handling: Never crashes -- all errors return structured MCP error responses

How It Works

The key insight: MCP tools are called by AI clients (Claude Desktop, Cursor, etc.) that already have AI built in. There is no need for the MCP server to make its own API calls.

  • check_grammar and improve_writing use 50+ regex-based rules to detect grammar errors, spelling mistakes, style issues, passive voice, and sentence length problems. Results are deterministic and instant.
  • translate and adjust_tone genuinely require AI intelligence, so they return structured prompts with guidelines that the host AI processes directly. This is faster, cheaper, and more reliable than a double API call.

Code Quality

This server follows NASA Power of 10 rules:

  • All functions under 60 lines
  • Minimum 2 assertions per function
  • All loops have fixed upper bounds
  • No global mutable state (constants are frozen)
  • Every return value is checked
  • Zero warnings

BeLikeNative Developer Tools

This tool is part of the BeLikeNative ecosystem — AI-powered writing tools for non-native English speakers.

Tool Type Description
Grammar Check GitHub Action PR grammar checker with 60 rules and L1-aware insights
Writing Assistant GitHub Action Writing quality analysis: readability, structure, clarity
i18n Checker GitHub Action Find hardcoded strings that need internationalization
Commit Lint GitHub Action Commit message grammar, format & clarity checker
Website Grader Web Tool Free website performance grader

BeLikeNative Chrome Extension — AI writing assistant for 100+ languages, 15 tones, 15 styles. 10,000+ users, 4.6★ rating.

License

MIT

from github.com/theluckystrike/bln-mcp-grammar-server

Установка Bln Mcp Grammar Server

У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.

▸ github.com/theluckystrike/bln-mcp-grammar-server

FAQ

Bln Mcp Grammar Server MCP бесплатный?

Да, Bln Mcp Grammar Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для Bln Mcp Grammar Server?

Нет, Bln Mcp Grammar Server работает без API-ключей и переменных окружения.

Bln Mcp Grammar Server — hosted или self-hosted?

Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.

Как установить Bln Mcp Grammar Server в Claude Desktop, Claude Code или Cursor?

Открой Bln Mcp Grammar Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Fetch

Web content fetching and conversion for efficient LLM usage.

автор: Community

Roblox Studio

Enables AI coding tools to control Roblox Studio for workspace exploration, instance manipulation, and script management. It provides tools for playtesting, sce

paralovавтор: paralov

Opencode Omniroute Plugin

OpenCode plugin for the OmniRoute AI Gateway. Drives dynamic model discovery, /connect auth flow, and multi-instance OmniRoute providers via the official @openc

GitHub Actionsавтор: GitHub Actions

AWS KB Retrieval

Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.

modelcontextprotocolавтор: modelcontextprotocol

Spring AI MCP Server

Provides auto-configuration for setting up an MCP server in Spring Boot applications.

автор: Community

llm-analysis-assistant

A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also

xuzexin-hzавтор: xuzexin-hz

MCP-Agent

A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)

lastmile-aiавтор: lastmile-ai

Spring AI MCP Client

Provides auto-configuration for MCP client functionality in Spring Boot applications.

автор: Community

mcp.natoma.ai

A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)

автор: Community

MCPHub

Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.

автор: Community

Compare Bln Mcp Grammar Server with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории ai