Bareun (바른) — Korean NLP & Spell Checking
Bareun MCP Server — Koreanische NLP- und Rechtschreib-/Grammatikprüfung
바른(Bareun) ist eine koreanische Natural-Language-Plattform. Dies ist ihr MCP (Model Context Protocol)-Server – er ermöglicht jedem MCP-kompatiblen KI-Tool (Claude, Cursor, VS Code, Claude Desktop, …), koreanische morphologische Analyse und Rechtschreib-/Grammatikkorrektur durchzuführen, indem Bareun als Tool aufgerufen wird.
Große Sprachmodelle übersehen weiterhin die subtilen Regeln zu Abständen, Partikelkongruenz und verwechselbaren Wörtern im Koreanischen. Binden Sie Bareun als MCP-Tool ein und Ihr Agent kann Analyse und Korrekturlesen an eine dedizierte koreanische Engine übergeben und das Ergebnis nutzen, um genauere koreanische Ausgaben zu erzeugen.
Gehosteter Endpunkt:
https://api.bareun.ai/mcpTransport: Streamable HTTP (JSON-RPC 2.0) – kein SSE, kein zusätzlicher Port, keine Installation
Authentifizierung: API-Schlüssel (
api-key-Header oderAuthorization: Bearer <key>)API-Schlüssel erhalten: https://bareun.ai
Der
/mcp-Endpunkt ist in der rechtschreibprüfungs-inklusive-Version von Bareun verfügbar (die reine morphologische-Analyse-Version stellt/mcpnicht bereit). Derselbe Endpunkt funktioniert auch bei selbst gehosteten/On-Premise-Installationen – tauschen Sie einfach den Host aus.
Tools
Tool | Was es tut | Wichtige Eingaben |
| Zerlegt einen Satz in Wörter/Morpheme und taggt Wortarten (morphologische Analyse). |
|
| Zerlegt einen Satz in Wort- (Token-)Einheiten. |
|
| Korrigiert Rechtschreibung/Abstände und gibt Korrekturblöcke zurück. |
|
| Gibt die 47 Part-of-Speech-Tags zurück, die Bareun verwendet (Code · Name · Klasse). | (keine) |
correct_grammar-Optionen (alle boolesch, standardmäßig aus): treat_as_title,
disable_split_sentence, disable_caret_spacing, disable_vx_spacing,
enable_limited_punctuation, disable_confusion, enable_cleanup_whitespace,
disable_typo_correction, enable_sentence_check.
encoding steuert die Einheit für Morphem-Offsets: utf32 (Standard, Codepunkte
– entspricht Python), utf16 (JS/Java), utf8 (Bytes – Go/C++).
Related MCP server: mcp-korean-spell
Ressourcen
Ressourcen-URI | Inhalt | Authentifizierung |
| Die 47 POS-Tags (Code · Name · Klasse) – gleiche Daten wie | API-Schlüssel |
| Server-Metadaten – Name · Version · Build · aktive Tools/Ressourcen | API-Schlüssel |
| Namen der für den Schlüssel registrierten Custom-Dictionary-Domänen | gültiger API-Schlüssel |
Schnellstart
Tipp – global registrieren. Die meisten Tools verwenden standardmäßig den Projekt-Bereich (der Server ist nur in einem Projekt verfügbar). Um Bareun in allen Ihren Projekten zu nutzen, registrieren Sie es im globalen / Benutzer- Bereich, wie unten gezeigt.
Claude Code
# -s user → global: available in every project
claude mcp add -s user --transport http bareun https://api.bareun.ai/mcp \
--header "api-key: YOUR_API_KEY"Lassen Sie -s user für den projektlokalen Bereich weg. Überprüfen Sie mit
claude mcp get bareun.
Cursor
Global: ~/.cursor/mcp.json · Projekt: <project>/.cursor/mcp.json
{
"mcpServers": {
"bareun": {
"url": "https://api.bareun.ai/mcp",
"headers": { "api-key": "YOUR_API_KEY" }
}
}
}VS Code
Global: MCP: Open User Configuration ausführen · Projekt: <project>/.vscode/mcp.json
{
"servers": {
"bareun": {
"type": "http",
"url": "https://api.bareun.ai/mcp",
"headers": { "api-key": "YOUR_API_KEY" }
}
}
}Claude Desktop — claude_desktop_config.json
Claude Desktop überbrückt header-authentifizierte Remote-Server über mcp-remote
(Node.js erforderlich):
{
"mcpServers": {
"bareun": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://api.bareun.ai/mcp",
"--header", "api-key: YOUR_API_KEY"
]
}
}
}Mit MCP Inspector testen
npx @modelcontextprotocol/inspectorSetzen Sie Transport auf Streamable HTTP, URL auf
https://api.bareun.ai/mcp und fügen Sie den Header api-key: YOUR_API_KEY hinzu.
Beispiel
// tools/call → analyze_syntax (format: compact)
{ "text": "나는 학교에 간다.", "format": "compact" }
// → "나/NP 는/JX 학교/NNG 에/JKB 가/VV ㄴ다/EF ./SF"Links
Dienst: https://bareun.ai
Dokumentation: https://bareun.ai/docs
MCP-Anleitung: https://bareun.ai/docs/howtouse/mcp
API-Schlüssel & Nutzung: https://bareun.ai/docs/howtouse/cloud-api
Lizenz
Die Inhalte dieses Repositorys (Dokumentation, Registry-Manifeste, Beispiele) sind unter der MIT-Lizenz veröffentlicht. Die Bareun-Engine selbst ist ein proprietärer Dienst von Baikal AI; der Zugriff unterliegt den Nutzungsbedingungen von bareun.ai.
This server cannot be installed
Maintenance
Related MCP Servers
- MIT
- AlicenseNot gradedqualityDmaintenanceProvides Korean spell checking and grammar correction via a single tool. It integrates into MCP clients like Cursor or Claude Desktop.4624Apache 2.0
- AlicenseNot gradedqualityAmaintenanceAn MCP server for working with the Võro language: local dictionary and corpus lookup, GiellaLT-backed analysis/spellcheck/grammar tools, and Neurotõlge translation.1MIT
- AlicenseAqualityAmaintenanceMCP server that wraps the Korean government's '나라장터 사전규격정보서비스' API, enabling natural language search and retrieval of public procurement pre-specifications through simplified tools.565MIT
Related MCP Connectors
Bible corpus MCP server: scripture, Greek/Hebrew interlinear data, cross-refs, semantic search.
This MCP server provides seamless access to Malaysia's government open data, including datasets, w…
Hosted MCP server for LLM cost estimation, model comparison, and budget-aware routing.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gih2yun/bareun-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server