Wheel Fitment API for VS Code
io.github.driveate/wheel-size-mcp
Official MCP server for vehicle wheel and tire fitment data from wheel-size.com
client:VS Code
transport:stdio
runtime:pypi
Install Wheel Fitment API in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "wheelsize-api-key",
"description": "WHEELSIZE_API_KEY",
"password": true
}
],
"servers": {
"wheel-size-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"wheel-size-mcp"
],
"env": {
"WHEELSIZE_API_KEY": "${input:wheelsize-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