Kia Access MCP
Provides tools for interacting with Kia vehicles through the Kia Owners API, enabling vehicle status reads (location, odometer, EV charge state) and confirm-gated commands (climate control, charging, door lock/unlock).
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., "@Kia Access MCPWhat's my EV range and odometer?"
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.
Kia Access MCP
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.
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.
This server can move a two-tonne object and can unlock your car. Every command tool is confirm-gated — without confirm: true it makes no network call at all and returns a dry-run preview — and door lock/unlock is not even registered unless you opt in with KIA_WRITE_MODE=all. Read Vehicle commands before changing that.
What you can do
Ask Claude things like:
"Is the EV9 locked, and what's the charge at?"
"Warm the car up to 72 for ten minutes"
"Where did I leave the car?"
"Refresh the car's status, then tell me the odometer"
Related MCP server: Tesla MCP Server
Requirements
Node.js 22.5 or later
A Kia Owners / Kia Access account with an enrolled vehicle, and its password
A phone or mailbox you can read once, for the one-time MFA passcode
Acknowledgement of terms
By using this server you accept that:
It uses your own Kia account credentials to talk to the same private API the Kia Access app uses. It cannot reach anyone else's vehicle or account.
Kia's terms govern your use of it, exactly as they govern your use of the app. This is not an official or supported integration and is not affiliated with, endorsed by, or sponsored by Kia.
Commands act on a real vehicle in the physical world. Unlocking leaves the car unsecured until someone locks it; climate preconditioning runs the HVAC and draws power. You are responsible for every command you confirm.
Failed logins have a permanent cost. Kia counts them (
loginAttempt) and eventually setsenforceRecaptcha, after which server-side login for that account is impossible. This server therefore never retries a rejected credential — see If login fails.
Installation
1. Clone and build
git clone https://github.com/chrischall/kiaaccess-mcp.git
cd kiaaccess-mcp
npm install
npm run build2. Configure credentials
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.
3. Register with Claude Code
{
"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.
The one-time MFA bootstrap
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 reportshasSession: false, continue.kia_start_login(needsconfirm: true) — sends your credentials, returns anotpKeyand anxid, plus the masked phone/email Kia has on file.kia_send_otp— pickSMSorEMAIL. 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 thevehicleKeyevery 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.
If login fails
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.
Vehicle commands
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.
| Registers |
| Nothing but the read tools and the account tools |
| Climate start/stop and the charging commands |
| Also |
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-gated. Without
confirm: truethere is no network call at all, just a preview of the exact request that would be sent.Accepted is not confirmed. Kia answering "success" only means the request was accepted. The only proof a command took effect is re-reading the vehicle and diffing the field, so results report
commandAcceptedandstateConfirmedseparately. Observed changes took 30–60 seconds.
Tools
Account and session
Tool | Notes |
| Configured? Bootstrapped? Which write mode? No network call, no secrets — the email is masked and the device id truncated. |
| Step 1 of the MFA bootstrap. Confirm-gated, because a rejection has a permanent cost. |
| Step 2 — delivers the passcode by |
| Step 3 — exchanges the passcode for a stored session. Returns no secret. |
| Discards the stored token so the bootstrap can be re-run. Local only; confirm-gated. |
| Returns the |
Reads
Tool | Notes |
| Every enrolled vehicle with its |
| Cached status: door lock, ignition ( |
| Wakes the telematics unit for a fresh reading. Slower, draws a little power, and returns no data itself — read |
| Last reported position plus a map link. Not a live GPS fix. |
| Target state of charge per plug type. |
Commands
Tool | Mode | Notes |
|
| Preconditioning. Temperature is best-effort: the car may report its own last-set target instead of the one requested. |
|
| Verified by re-reading |
|
| Verified. Needs the car plugged in — unplugged, Kia accepts the request and nothing happens. Confirm via |
|
| Verified. Confirm via |
|
| Verified, and re-read against |
|
| Verified by re-reading |
|
| 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.
Hosted connector
The same tools can run as a Cloudflare Worker for use as a remote connector on claude.ai. The MFA bootstrap cannot work there (the passcode arrives minutes later, on another device), so you bootstrap locally, export the token with kia_export_refresh_token, and hand it to the connector's login page, which stores it in your encrypted credentials. See docs/DEPLOY-CONNECTOR.md.
Development
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 runtimeLicense
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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/chrischall/kiaaccess-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server