mockzilla mcp for VS Code
io.github.mockzilla/mockzilla-mcp
Mock OpenAPI specs locally, or log in to deploy hosted mocks on mockzilla.org from your MCP client.
client:VS Code
transport:stdio
runtime:npm
Install mockzilla mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "mockzilla-token",
"description": "MOCKZILLA_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "mockzilla-mcp-url",
"description": "MOCKZILLA_MCP_URL",
"password": true
},
{
"type": "promptString",
"id": "mockzilla-managed-port",
"description": "MOCKZILLA_MANAGED_PORT",
"password": true
}
],
"servers": {
"mockzilla-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@mockzilla/mcp"
],
"env": {
"MOCKZILLA_TOKEN": "${input:mockzilla-token}",
"MOCKZILLA_MCP_URL": "${input:mockzilla-mcp-url}",
"MOCKZILLA_MANAGED_PORT": "${input:mockzilla-managed-port}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs