maplestory mcp server for VS Code
io.github.kcw2034/maplestory-mcp-server
MCP server for Nexon MapleStory OpenAPI - character, rankings, union, guild, and notices
client:VS Code
transport:stdio
runtime:pypi
Install maplestory mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "maplestory-api-key",
"description": "MAPLESTORY_API_KEY",
"password": true
}
],
"servers": {
"maplestory-mcp-server": {
"type": "stdio",
"command": "uvx",
"args": [
"maplestory-mcp-server"
],
"env": {
"MAPLESTORY_API_KEY": "${input:maplestory-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs