MikroMCP for VS Code
io.github.alikarami/mikromcp
MCP server for MikroTik RouterOS: typed tools, dry-run, RBAC, audit logs, and rollback.
client:VS Code
transport:stdio
runtime:npm
Install MikroMCP in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mikromcp-config-path",
"description": "MIKROMCP_CONFIG_PATH",
"password": true
},
{
"type": "promptString",
"id": "mikromcp-stdio-identity",
"description": "MIKROMCP_STDIO_IDENTITY",
"password": true
},
{
"type": "promptString",
"id": "mikromcp-log-level",
"description": "MIKROMCP_LOG_LEVEL",
"password": true
}
],
"servers": {
"mikromcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mikromcp"
],
"env": {
"MIKROMCP_CONFIG_PATH": "${input:mikromcp-config-path}",
"MIKROMCP_STDIO_IDENTITY": "${input:mikromcp-stdio-identity}",
"MIKROMCP_LOG_LEVEL": "${input:mikromcp-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs