packet tracer mcp for VS Code
io.github.jcorderop02/packet-tracer-mcp
MCP server for Cisco Packet Tracer 9 — live IOS, OSPF, BGP, NAT, VLAN, VoIP, QoS, IPv6, wireless.
client:VS Code
transport:stdio
runtime:npm
Install packet tracer mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "bridge-port",
"description": "BRIDGE_PORT",
"password": true
}
],
"servers": {
"packet-tracer-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"packet-tracer-mcp"
],
"env": {
"BRIDGE_PORT": "${input:bridge-port}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs