Bareun (바른) — Korean NLP & Spell Checking
Bareun MCP 服务器 — 韩语 NLP 与拼写/语法检查
바른(Bareun) 是一个韩语自然语言平台。这是它的 MCP(模型上下文协议) 服务器——它让任何兼容 MCP 的 AI 工具(Claude、Cursor、VS Code、Claude Desktop 等)能够通过调用 Bareun 作为工具来执行韩语形态分析和拼写/语法纠正。
大型语言模型仍然会遗漏韩语中细微的间隔、助词一致性和易混淆词规则。将 Bareun 作为 MCP 工具接入后,您的智能体可以将分析和校对工作交给专门的韩语引擎,然后利用其结果生成更准确的韩语输出。
托管端点:
https://api.bareun.ai/mcp传输方式: Streamable HTTP(JSON-RPC 2.0)——无需 SSE、无需额外端口、无需安装
认证: API 密钥(
api-key请求头或Authorization: Bearer <key>)获取 API 密钥: https://bareun.ai
/mcp端点仅在包含拼写检查器的 Bareun 版本中可用(仅含形态分析的版本不暴露/mcp)。同一端点也适用于自托管/本地部署——只需更换主机即可。
工具
工具 | 功能 | 关键输入 |
| 将句子拆分为词/语素并标注词性(形态分析)。 |
|
| 将句子拆分为词(token)单元。 |
|
| 纠正拼写/间隔并返回纠正块。 |
|
| 返回 Bareun 使用的 47 个词性标签(代码 · 名称 · 类别)。 | (无) |
correct_grammar 选项(全部为布尔值,默认关闭):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 控制语素偏移量的单位:utf32(默认,码点——与 Python 一致)、utf16(JS/Java)、utf8(字节——Go/C++)。
Related MCP server: mcp-korean-spell
资源
资源 URI | 内容 | 认证 |
| 47 个词性标签(代码 · 名称 · 类别)——与 | API 密钥 |
| 服务器元数据——名称 · 版本 · 构建 · 可用工具/资源 | API 密钥 |
| 为该密钥注册的自定义词典域名名称 | 有效的 API 密钥 |
快速开始
提示——全局注册。 大多数工具默认为项目范围(服务器仅在一个项目中可用)。要在所有项目中跨项目使用 Bareun,请按如下所示在全局/用户范围注册。
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"省略 -s user 即为项目本地范围。使用 claude mcp get bareun 检查。
Cursor
全局:~/.cursor/mcp.json · 项目:<project>/.cursor/mcp.json
{
"mcpServers": {
"bareun": {
"url": "https://api.bareun.ai/mcp",
"headers": { "api-key": "YOUR_API_KEY" }
}
}
}VS Code
全局:运行 MCP: Open User Configuration · 项目:<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 通过 mcp-remote 桥接基于请求头认证的远程服务器(需要 Node.js):
{
"mcpServers": {
"bareun": {
"command": "npx",
"args": [
"-y", "mcp-remote",
"https://api.bareun.ai/mcp",
"--header", "api-key: YOUR_API_KEY"
]
}
}
}使用 MCP Inspector 测试
npx @modelcontextprotocol/inspector将传输方式设置为 Streamable HTTP,URL 设置为 https://api.bareun.ai/mcp,并添加请求头 api-key: YOUR_API_KEY。
示例
// tools/call → analyze_syntax (format: compact)
{ "text": "나는 학교에 간다.", "format": "compact" }
// → "나/NP 는/JX 학교/NNG 에/JKB 가/VV ㄴ다/EF ./SF"链接
API 密钥与用量: https://bareun.ai/docs/howtouse/cloud-api
许可证
本仓库的内容(文档、注册清单、示例)根据 MIT 许可证 发布。Bareun 引擎本身是由 Baikal AI 运营的专有服务;访问受 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