kimp-mcp
Configuration
View docs{
"mcpServers": {
"drfirstlee-kimp-mcp": {
"command": "npx",
"args": [
"-y",
"@drfirst/kimp-mcp"
]
}
}
}This MCP Server provides live Kimchi Premium (KIMP) data for cryptocurrencies and makes it easy to query from MCP clients. It enables you to access exchange-premium information programmatically, supporting quick integration into your workflows and chat-enabled assistants.
You interact with this MCP server through an MCP client. Use the get_kimp tool to query the Kimchi Premium data for a specific cryptocurrency symbol and base currency. The default symbol is BTC and the default currency is KRW, but you can customize both to fit your needs.
Prerequisites you need before installing: Node.js and npm. Ensure npm is up to date on your system.
Option 1: Use npx directly (recommended) to run the MCP server without a local install.
{
"mcpServers": {
"kimp": {
"command": "npx",
"args": ["-y", "@drfirst/kimp-mcp"]
}
}
}Option 2: Install locally for a persistent setup.
npm install -g @drfirst/kimp-mcpIf you are configuring Claude Desktop, add the MCP server entry to the claude_desktop_config.json file to enable access to the KIMP MCP server.
{
"mcpServers": {
"kimp": {
"command": "npx",
"args": ["-y", "@drfirst/kimp-mcp"]
}
}
}Queries Kimchi Premium data for a given cryptocurrency symbol and base currency. Parameters: symbol (string, optional, default "BTC"), currency (string, optional, default "KRW").