Back to MCP directory
publicPublicdnsLocal runtime

Hangul-MCP

Hangul-MCP是基于MCP协议的韩语实用工具,提供拼写检查、罗马字转换等功能,特别支持简历优化。

article

README

🚀 Hangul - MCP (한국어 유틸리티)

Hangul - MCP是一个基于MCP(Model Chaining Protocol)的韩语实用工具服务。它借助kospell库,提供韩语拼写检查、罗马字转换等功能。

🚀 快速开始

Hangul - MCP可通过MCP协议与其他应用集成。你可以在settings.json或类似的环境配置文件中按以下方式注册服务器:

{
  "mcpServers": {
    "kogrammar-server": {
      "command": "path/to/your/kogrammar.exe",
      "args": [],
      "env": {}
    }
  }
}

✨ 主要特性

KoGrammar具备以下功能:

  1. 拼写检查:检查韩语句子的拼写,并提出错误修正建议。
  2. 字数统计:计算韩语文本的字符数和单词数。
  3. 简历审核:专为简历撰写设计的功能,可同时检查字数限制和提供拼写反馈。
  4. 罗马字转换:按照韩国国立国语院的罗马字标记法将韩语文本进行转换。

📦 安装指南

二进制文件下载

我们提供了可在Windows或Linux环境下运行的二进制文件:

  • Windows:kogrammar.exe
  • Linux:kogrammar - linux - amd64

源代码编译

若要从源代码直接构建,请遵循以下步骤:

  1. 安装Go 1.24或更高版本。
  2. 克隆仓库:
git clone https://github.com/Alfex4936/Hangul-MCP
cd Hangul-MCP
  1. 安装依赖:
go mod download
  1. 编译:
go build -o kogrammar

📚 详细文档

MCP工具列表

KoGrammar提供了以下MCP工具:

  1. count_korean_letters:计算韩语文本的字符数和单词数。
  2. check_korean_grammar:检查韩语句子的拼写,并提供修改建议。
  3. resume_review:专为简历设计的审核功能,集成了字数检查和拼写检查。
  4. romanize_korean:根据韩国国立国语院的标记法将韩语文本转换为罗马字。

📄 许可证

此项目依赖以下开源项目:

  • (주)나라인포테크的拼写检查器
  • kospell - 韩语拼写检查库
  • [mcp - go](https://github.com/mark3labs/mcp - go) - Model Chaining Protocol的Go实现
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client