mcp server wheel size for VS Code
io.github.aiwerk/mcp-server-wheel-size
Wheel-Size.com fitment API: OEM and aftermarket wheel and tyre data for 100k+ vehicles (read-only).
client:VS Code
transport:stdio
runtime:npm
Install mcp server wheel size in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wheel-size-api-key",
"description": "WHEEL_SIZE_API_KEY",
"password": true
}
],
"servers": {
"mcp-server-wheel-size": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@aiwerk/mcp-server-wheel-size"
],
"env": {
"WHEEL_SIZE_API_KEY": "${input:wheel-size-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