MCP server for MSFS SimConnect - full read/write access to SimVars, L-vars and events
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
An MCP (Model Context Protocol) server that connects AI coding agents to Microsoft Flight Simulator via SimConnect. This server is built for add-on development β full read/write access to SimVars, L-vars, events, calculator code execution, and embedded documentation.
.FLT flights, load a .PLN flight plan, and spawn an AI aircraft or object, for scripting test scenarios instead of setting them up by handuvx, which fetches the server and its Python runtime for youPublished on PyPI as simconnect-mcp,
and listed in the MCP Registry as
io.github.robin24/simconnect-mcp.
Once uv is installed, no separate install step is
needed β uvx fetches and runs the server on demand:
That starts the server on stdio, which is what an MCP client does for you. Run it by hand only to check that it starts; press Ctrl+C to stop.
To pin a version, use uvx simconnect-mcp@1.0.1.
Via CLI:
Or to make it available across all projects:
Via JSON (~/.claude/settings.json or project-level .claude/settings.json):
Via CLI:
Via JSON:
Via CLI:
Via JSON (~/.gemini/settings.json):
Note: To run a local checkout instead of the published package, replace
uvx simconnect-mcpwithuv run --directory /path/to/simconnect-mcp simconnect-mcp, using the absolute path to your clone.
Every tool is prefixed msfs_, carries explicit readOnlyHint/destructiveHint annotations, and returns a typed result or a structured error β never a fabricated success. The tables below are generated from the live server (name, kind, and title come straight from each tool's ToolAnnotations); descriptions are the one-line summary from the tool's own docstring:
| Tool | Kind | Description |
|---|---|---|
msfs_connect | write | Establish a SimConnect connection to MSFS |
msfs_disconnect | write | Close the SimConnect connection to MSFS |
msfs_get_connection_status | read | Check connection state, whether the sim is running/paused |
| Tool | Kind | Description |
|---|---|---|
msfs_get_simvar | read | Read a SimVar value by name, in the requested unit |
msfs_set_simvar | write | Write a value to a settable SimVar β fails honestly rather than reporting success on a rejected write |
msfs_get_simvars_bulk | read | Read several SimVars in one call; one failing entry doesn't abort the rest |
msfs_search_simvars | read | Search the SimVar catalog by keyword |
msfs_list_simvar_categories | read | List every SimVar category with its variable count |
msfs_watch_simvar | read | Sample a SimVar over time, returning a time series for debugging |
Units: msfs_get_simvar (and msfs_set_simvar) accept an optional unit argument and always report the unit actually used in the result. Omit unit and the bundled SimVar catalog supplies a sensible default for that variable; for a variable the catalog doesn't know, the default is "number".
| Tool | Kind | Description |
|---|---|---|
msfs_trigger_event | write | Fire a SimConnect event, with an optional parameter |
msfs_search_events | read | Search SimConnect events by keyword, optionally filtered by category |
msfs_trigger_custom_event | write | Fire a custom event as a key event through the MobiFlight WASM module |
| Tool | Kind | Description |
|---|---|---|
msfs_get_lvar | read | Read an L-var (local variable) value from the current aircraft |
msfs_set_lvar | write | Write a value to an L-var on the current aircraft |
msfs_list_lvars | read | Enumerate the L-vars the currently loaded aircraft has registered |
msfs_execute_calculator_code | write | Execute RPN calculator code in the simulator |
msfs_search_lvars | read | Search known aircraft L-vars by keyword across the bundled catalogs |
msfs_browse_lvar_catalog | read | Browse the aircraft L-var catalogs β list catalogs, the panels in one, or the variables on one panel |
msfs_list_lvars asks the MobiFlight WASM module to enumerate what the aircraft has actually registered, live β but the module caps its reply at 1000 names and still reports the list as complete when it truncates. A busy add-on setup (GSX and similar) can crowd the aircraft's own variables out of the response entirely; watch for truncated: true. Treat the catalogs and the live listing as a starting point, not a guaranteed inventory β msfs_get_lvar reads any name you supply, whether or not it surfaced in either one.
| Tool | Kind | Description |
|---|---|---|
msfs_get_aircraft_snapshot | read | Read a snapshot of the current aircraft state (position, speed, attitude, and key systems in one call) |
| Tool | Kind | Description |
|---|---|---|
msfs_get_nearby_airports | read | List airports near a point, nearest first |
msfs_get_facility_info | read | Look up one airport, waypoint, NDB or VOR by ICAO identifier |
Airports are world-wide (SimConnect returns the full 85,249-airport list, cached after the first collection). Waypoints, NDBs and VORs are scoped to wherever the aircraft currently is, so they are re-collected on every call rather than cached β a cached navaid list would keep answering for the aircraft's previous position after a reposition or a flight.
| Tool | Kind | Description |
|---|---|---|
msfs_send_sim_text | write | Display a text overlay message in the simulator (debug feedback) |
msfs_set_aircraft_position | write | Reposition the aircraft (test scenario setup) |
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/simconnect-mcp)<a href="https://allmcps.com/mcp/simconnect-mcp"><img src="https://allmcps.com/api/badge/simconnect-mcp?style=directory" alt="SimConnect MCP on AllMCPs" /></a>