Vehicle MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Vehicle MCPcheck my battery level"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Vehicle MCP
A Model Context Protocol (MCP) server for controlling your vehicle. Check battery status, control climate, lock/unlock doors, and more — from your AI assistant.
Supported brands:
Brand | Uses |
Skoda |
Tools
get_vehicle_info and get_vehicle_status are always available. The remaining tools are enabled based on your vehicle's detected capabilities.
Tool | Description |
| Static vehicle info (VIN, model, year, etc.) |
| Current status (battery, range, location, etc.) |
| Start heating/cooling |
| Stop climate control |
| Start charging |
| Stop charging |
| Lock vehicle |
| Unlock vehicle |
Usage
Add to your MCP client configuration:
{
"mcpServers": {
"vehicle": {
"command": "uvx",
"args": ["vehicle-mcp"],
"env": {
"BRAND": "skoda",
"USERNAME": "your-email@example.com",
"PASSWORD": "your-password"
}
}
}
}Docker images track main and may include unreleased changes. For stable releases, use uvx above.
{
"mcpServers": {
"vehicle": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "BRAND", "-e", "USERNAME", "-e", "PASSWORD", "ghcr.io/antonlunden/vehicle-mcp"],
"env": {
"BRAND": "skoda",
"USERNAME": "your-email@example.com",
"PASSWORD": "your-password"
}
}
}
}Variable | Required | Description |
| Yes | Vehicle brand ( |
| Yes | Email for your vehicle's connected services |
| Yes | Password for your vehicle's connected services |
| No | Vehicle VIN (auto-detects if not set) |
| For lock/unlock (Skoda) | S-PIN configured in Skoda Connect app |
Multiple Vehicles
Different accounts
Add multiple server entries — VIN will be auto-detected:
{
"mcpServers": {
"my-skoda": {
"command": "uvx",
"args": ["vehicle-mcp"],
"env": {
"BRAND": "skoda",
"USERNAME": "me@example.com",
"PASSWORD": "my-password"
}
},
"partners-skoda": {
"command": "uvx",
"args": ["vehicle-mcp"],
"env": {
"BRAND": "skoda",
"USERNAME": "partner@example.com",
"PASSWORD": "their-password"
}
}
}
}Same account
Specify the VIN for each vehicle:
{
"mcpServers": {
"family-car": {
"command": "uvx",
"args": ["vehicle-mcp"],
"env": {
"BRAND": "skoda",
"USERNAME": "me@example.com",
"PASSWORD": "my-password",
"VIN": "TMBXXXXXXXXXXXXXX"
}
},
"weekend-car": {
"command": "uvx",
"args": ["vehicle-mcp"],
"env": {
"BRAND": "skoda",
"USERNAME": "me@example.com",
"PASSWORD": "my-password",
"VIN": "TMBYYYYYYYYYYYYYYY"
}
}
}
}Contributing
See CONTRIBUTING.md.
This server cannot be installed
Maintenance
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/antonlunden/vehicle-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server