- Home
- MCP servers
- Korean Spell
Korean Spell
- javascript
21
GitHub Stars
javascript
Language
4 months ago
First Indexed
3 weeks ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"winterjung-mcp-korean-spell": {
"command": "npx",
"args": [
"-y",
"@winterjung/mcp-korean-spell"
]
}
}
}You have a Korean spell-check MCP server that plugs into your client to analyze and correct Korean spelling and grammar within your text. It provides a focused, reusable tool you can enable in your workflow to improve writing accuracy and consistency.
How to use
Connect this server to your MCP client by configuring your MCP settings so the client can launch the spell checker when you need it. The server exposes a tool named fix_korean_spell that analyzes Korean text for spelling and grammar improvements. Once configured, you can send text to the server and receive corrected output to integrate into your documents.
How to install
Prerequisites you need before configuring the server: verify you have Node.js and npm installed on your system.
-
Check your Node.js and npm versions to ensure compatibility.
-
Create or update your MCP client configuration with the provided MCP server entry to enable the Korean spell checker.
-
Place the MCP server entry in your client’s MCP configuration file so the client can start the server on demand using your existing MCP workflow.
-
When you need to verify the integration, trigger the MCP client workflow and confirm that the Korean spell checker runs and returns corrected text.
Configuration and tools
The spell checker is wired through an MCP server entry that uses an executable runner to launch the package. The MCP server configuration shown below runs via npx and loads the package that provides fix_korean_spell.
{
"mcpServers": {
"korean-spell-checker": {
"command": "npx",
"args": [
"-y",
"@winterjung/mcp-korean-spell"
]
}
}
}
Available tools
fix_korean_spell
Analyses Korean text to identify spelling and grammar errors and returns corrected text for integration into documents.