
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
kiaaccess-mcp
Advanced tools
Kia Access MCP server for Claude — developed and maintained by AI (Claude Code)
A Model Context Protocol server that connects Claude to your own Kia vehicle through the Kia Owners API the Kia Access mobile app uses: vehicle status, location, odometer, EV charge state, and confirm-gated door, climate, and charging commands.
[!WARNING] AI-developed project. This codebase was built and is maintained by Claude Code. No human has audited the implementation. Review the code and the tool permissions before pointing it at a real car.
[!CAUTION] This server can move a two-tonne object and can unlock your car. Every command tool is confirm-gated — without
confirm: trueit makes no network call at all and returns a dry-run preview — and door lock/unlock is not even registered unless you opt in withKIA_WRITE_MODE=all. Read Vehicle commands before changing that.
Ask Claude things like:
By using this server you accept that:
loginAttempt) and eventually sets enforceRecaptcha, after which server-side login for that account is impossible. This server therefore never retries a rejected credential — see If login fails.git clone https://github.com/chrischall/kiaaccess-mcp.git
cd kiaaccess-mcp
npm install
npm run build
cp .env.example .env
# Edit .env: KIA_USERNAME, KIA_PASSWORD (and optionally KIA_WRITE_MODE)
.env is gitignored. The server never logs credentials, and no tool ever returns your password.
{
"mcpServers": {
"kiaaccess": {
"command": "npx",
"args": ["-y", "kiaaccess-mcp"],
"env": {
"KIA_USERNAME": "you@example.com",
"KIA_PASSWORD": "your-password",
"KIA_WRITE_MODE": "comfort"
}
}
}
}
Missing credentials do not stop the server from booting — it starts, answers tools/list, and only reports the configuration error when a tool actually needs to call Kia. Run kia_session_status to see what it thinks it has.
Kia challenges every new device with a one-time passcode. This server bootstraps once, stores the resulting remember-me token (rmtoken) under ~/.kiaaccess-mcp/session.json, and from then on mints fresh sessions silently — Kia does not rotate the token and does not challenge again.
Run it through Claude, in this order:
kia_session_status — confirms credentials are present. If it reports hasSession: false, continue.kia_start_login (needs confirm: true) — sends your credentials, returns an otpKey and an xid, plus the masked phone/email Kia has on file.kia_send_otp — pick SMS or EMAIL. The passcode expires in about two minutes.kia_verify_otp — hand it the passcode. The token is stored locally and is deliberately not returned.kia_list_vehicles — confirms the session works and gives you the vehicleKey every other tool takes.To start over (revoked token, changed password, handing the machine on), run kia_forget_session with confirm: true and repeat from step 2.
Do not retry. Kia increments loginAttempt on every rejection and eventually sets enforceRecaptcha, which breaks server-side login for that account permanently. Verify the email and password in the Kia Access app first, fix .env, restart, and only then try again.
KIA_WRITE_MODE decides which command tools are registered at all. This is a structural gate, not a runtime check: a tool that was never registered cannot be invoked by any host permission setting or by an instruction injected into the conversation.
KIA_WRITE_MODE | Registers |
|---|---|
none | Nothing but the read tools and the account tools |
comfort (default) | Climate start/stop and the charging commands |
all | Also kia_lock_doors and kia_unlock_doors |
An unrecognised value fails closed to none and warns on stderr — a typo must never silently grant the ability to unlock a car.
Two more rules hold for every command:
confirm: true there is no network call at all, just a preview of the exact request that would be sent.commandAccepted and stateConfirmed separately. Observed changes took 30–60 seconds.| Tool | Notes |
|---|---|
kia_session_status | Configured? Bootstrapped? Which write mode? No network call, no secrets — the email is masked and the device id truncated. |
kia_start_login | Step 1 of the MFA bootstrap. Confirm-gated, because a rejection has a permanent cost. |
kia_send_otp | Step 2 — delivers the passcode by SMS or EMAIL. |
kia_verify_otp | Step 3 — exchanges the passcode for a stored session. Returns no secret. |
kia_forget_session | Discards the stored token so the bootstrap can be re-run. Local only; confirm-gated. |
kia_export_refresh_token | Returns the rmtoken in plaintext — a full MFA bypass. Exists only to move a session into the hosted connector. Confirm-gated. |
| Tool | Notes |
|---|---|
kia_list_vehicles | Every enrolled vehicle with its vehicleKey, nickname, model, mileage. VINs are masked to the last 6 characters. |
kia_vehicle_status | Cached status: door lock, ignition (ign3 — on an EV engine stays false), the nested climate block, and more with include_raw. Fast, but only as fresh as the last upload. |
kia_refresh_status | Wakes the telematics unit for a fresh reading. Slower, draws a little power, and returns no data itself — read kia_vehicle_status afterwards. |
kia_vehicle_location | Last reported position plus a map link. Not a live GPS fix. |
kia_charge_targets | Target state of charge per plug type. |
| Tool | Mode | Notes |
|---|---|---|
kia_start_climate | comfort | Preconditioning. Temperature is best-effort: the car may report its own last-set target instead of the one requested. |
kia_stop_climate | comfort | Verified by re-reading climate.airCtrl. |
kia_start_charge | comfort | Verified. Needs the car plugged in — unplugged, Kia accepts the request and nothing happens. Confirm via evStatus.batteryCharge. |
kia_stop_charge | comfort | Verified. Confirm via evStatus.batteryCharge. |
kia_set_charge_limits | comfort | Verified, and re-read against evc/gts afterwards. Send both plug types — the list replaces the stored one. |
kia_lock_doors | all | Verified by re-reading doorLock. |
kia_unlock_doors | all | Leaves the car physically unsecured. Only run it when the user explicitly asked. |
Every endpoint here was verified live against a 2024 EV9 — the reads and the four door/climate commands on 2026-07-27, and the three evc/* charging commands on 2026-07-28 against a plugged-in car. Each was proven by re-reading state, never by the success status: Kia answers statusCode: 0 the moment it accepts a command, seconds before the car acts, and on an unplugged car it answers success and does nothing at all. Every command result therefore reports "accepted" and "confirmed" separately. The full protocol write-up is in docs/KIA-API.md.
The same tools can run as a Cloudflare Worker for use as a remote connector on claude.ai. Sign in with your Kia email and password on the connector's own login page: submit once to have Kia text you a code, then submit again with the code. The connector completes the verification itself and keeps the resulting remember-me token in your encrypted credentials, so it never asks again — you do not need the local server, and you never handle a token. See docs/DEPLOY-CONNECTOR.md.
npm test # unit tests (no network — fetch is mocked throughout)
npm run test:coverage # the same, with the enforced 100% thresholds
npm run build # tsc + esbuild bundle
npm run worker:test # the hosted-connector suite, under the Workers runtime
FAQs
Kia Access MCP server for Claude — developed and maintained by AI (Claude Code)
We found that kiaaccess-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.