Kuksa MCP Server
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., "@Kuksa MCP ServerWhat is the current vehicle speed?"
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.
Kuksa MCP Server
A Model Context Protocol (MCP) server that connects LLMs to vehicle data via the Eclipse Kuksa Databroker. Enables AI assistants to read and write vehicle signals using the standardized COVESA Vehicle Signal Specification (VSS).
Features
Read signals — Get current or target values of any VSS signal
Batch reads — Fetch multiple signals in a single call
Write actuators — Set actuator targets or publish sensor readings
Browse the VSS tree — List or count signals under any branch, with substring filtering
Inspect types — Query data types for any signal path
Server introspection — Name, version, signal count at startup
Per-request logging — Every tool call logged with params, timing, and result summary
Dual transport — stdio (default) and SSE (HTTP)
OpenCode ready — Pre-configured
opencode.jsoncfor local and remote variants
Related MCP server: MCP Server Sample
Quick Start
1. Start a Kuksa Databroker
docker run -d --rm -p 55555:55555 --name kuksa-databroker \
ghcr.io/eclipse-kuksa/kuksa-databroker:main --insecure2. Install & Run
pip install kuksa-mcp-server
kuksa-mcpOr from source:
git clone https://github.com/mikehaller/kuksa-mcp-server.git
cd kuksa-mcp-server
pip install -e ".[dev]"
kuksa-mcp3. Configure your MCP client
{
"mcpServers": {
"kuksa": {
"command": "kuksa-mcp"
}
}
}{
"mcpServers": {
"kuksa-local": {
"type": "local",
"command": ["kuksa-mcp", "--log-file", "./kuksa-mcp.log"],
"enabled": true,
"timeout": 10000
}
}
}{
"mcpServers": {
"kuksa-remote": {
"type": "remote",
"url": "http://127.0.0.1:8765/sse",
"enabled": false,
"timeout": 10000
}
}
}OpenCode MCP Server Variants
The project ships with two entries in opencode.jsonc:
Variant | Transport | Default | Use case |
| stdio (subprocess) | enabled | Local dev, single-user, auto-managed |
| SSE (HTTP) | disabled | Multi-user, containerized, remote databroker |
Start the remote variant manually:
kuksa-mcp --transport sse --host 0.0.0.0 --port 8765CLI Reference
kuksa-mcp [options]
Options:
--transport <stdio|sse> Transport protocol (default: stdio)
--host <ip> Bind address for SSE (default: 127.0.0.1)
--port <port> Port for SSE (default: 8765)
--kuksa-host <host> Databroker host (overrides KUKSA_HOST env)
--kuksa-port <port> Databroker port (overrides KUKSA_PORT env)
--log-file <path> File path for request logging (also written to stderr)Environment Variables
Variable | Default | Description |
|
| Kuksa Databroker host |
|
| Kuksa Databroker gRPC port |
| (none) | JWT token for authorization |
Tools
Tool | API | Description |
| Kuksa V2 | Get current value of one VSS signal |
| Kuksa V2 | Get current values of multiple signals |
| Kuksa V2 | Set an actuator target value |
| Kuksa V2 | Publish a sensor reading (provider role) |
| V1 (deprecated) | List signals and metadata under a branch |
| V1 (deprecated) | Count signals matching a filter |
| V1 (deprecated) | Read actuator target/desired values |
| V1 (deprecated) | Get data types for one or more signals |
| V1 (deprecated) | Get databroker name, version, address |
Resources
URI | Description |
| Server and tool reference |
| Signal info (redirects to tool) |
| Branch listing (redirects to tool) |
Startup Output
On startup the server prints a banner with version, databroker info, and catalog stats:
======================================================
Kuksa Databroker MCP Server
Version : 0.1.0
Built : 2026-06-24
======================================================
Backend : databroker
Address : 127.0.0.1:55555
Version : 0.7.0-dev.0
Status : connected
Signals : 1263 total
Types : ACTUATOR=643, ATTRIBUTE=130, SENSOR=490
======================================================Every tool call is logged:
09:45:12 [INFO] Processing request of type ListToolsRequest
09:45:12 [INFO] Processing request of type CallToolRequest
09:45:12 [INFO] get_signal(args={'path': 'Vehicle.Speed'}) -> ok [0.023s]
09:45:15 [INFO] list_signals(args={'branch': 'Vehicle.Cabin', 'query': ''}) -> 490 results [0.045s]Development
pip install -e ".[dev]"
pytest
kuksa-mcp --transport sse
python examples/local_test.pyDocker
The server is published as a Docker image on GitHub Container Registry:
docker pull ghcr.io/mikehaller/kuksa-mcp-server:latest
# Run with SSE transport
docker run --rm -p 8765:8765 \
-e KUKSA_HOST=host.docker.internal \
ghcr.io/mikehaller/kuksa-mcp-server:latest \
--transport sse --host 0.0.0.0 --port 8765The image uses a non-root kuksa user and is built from python:3.12-slim (~200 MB).
License
Apache 2.0 — see LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/mikehaller/kuksa-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server