MCP (Model Context Protocol)
MCP is a standard protocol that enables AI tools to query the KICC Developer Center documentation in real-time, providing answers based on the latest API specifications and guides.
Key Features
Connecting an MCP server equips your AI with the following capabilities:
- Real-time API Spec Lookup: Finds precise documentation for queries like "Tell me the Payment Approval API URL and parameters."
- Sample Code Exploration: Generates integration code for specific languages (Node.js, Java, etc.) by referencing the latest development guides.
- Troubleshooting Guide: Suggests the correct resolution methods defined in the documentation (e.g., Network Cancel) when error codes (e.g., 9999) occur.
Configuration
Add the configuration file corresponding to your AI editor. You must restart the editor after configuration for changes to take effect.
- Cursor
- Windsurf
- VSCode
- Claude Desktop
Cursor uses the mcp.json file located in the home directory.
{
"mcpServers": {
"easypay": {
"command": "npx",
"args": ["-y", "@kicc/easypay-mcp"]
}
}
}
Windsurf requires creating a configuration file at the path below.
{
"mcpServers": {
"easypay": {
"command": "npx",
"args": ["-y", "@kicc/easypay-mcp"]
}
}
}
VSCode uses the project or workspace settings folder.
{
"servers": {
"easypay": {
"command": "npx",
"args": ["-y", "@kicc/easypay-mcp"]
}
}
}
For Claude Desktop, modify via the settings menu (Settings > Developer > Edit Config).
{
"mcpServers": {
"easypay": {
"command": "npx",
"args": ["-y", "@kicc/easypay-mcp"]
}
}
}
Please completely close and restart the program after finishing the setup. If you see a plug icon or an MCP Connected indicator in the chat input area, the integration is successful.