- Home
- MCP servers
- MSFS SDK
MSFS SDK
- typescript
4
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"90barricade93-msfs-sdk-mcp": {
"command": "node",
"args": [
"path/to/msfs-sdk-mcp/dist/index.js"
]
}
}
}You can run a modern MCP server that exposes Microsoft Flight Simulator SDK documentation to AI assistants and tools. It provides fast, structured access through real-time search, multiple categories, and natural language queries, letting you locate and retrieve documentation content efficiently for your MCP-enabled workflows.
How to use
Start the MCP server locally and connect your MCP-compatible client. You will be able to search the MSFS SDK documentation in real time, browse by contents, index, glossary, or all categories, and fetch detailed content from specific pages. Use natural language queries to refine results and receive structured responses that include titles, URLs, and descriptions.
How to install
Prerequisites you need before installing include Node.js 18.x or higher, npm 8.x or higher, and TypeScript 5.x. Install these on your system to ensure compatibility with the MCP server.
Additional setup notes
Install dependencies, build, and start the MCP server using the commands shown in the setup sequence. The server can be run in a local environment and wired to MCP clients that support the standard MCP connection model.
Configuration example
{
"mcpServers": {
"msfs_sdk": {
"command": "node",
"args": ["path/to/msfs-sdk-mcp/dist/index.js"]
}
}
}
Usage patterns and tips
- Run in development mode while iterating on features, then start a production-ready instance for long-term usage. - Expose the MCP server to your client environment via the configured stdio path, or run it locally and connect through your client’s MCP interface. - Combine real-time search with detailed content retrieval to assemble precise documentation references for your workflows.
Available tools
search_msfs_docs
Search MSFS SDK documentation across contents, index, glossary, or all categories with optional limit.
get_doc_content
Retrieve detailed content from a documentation page given its URL and a specific section.
list_categories
Show all available search categories for documentation queries.
list_category_items
List items within a chosen category to browse results.
natural_language_query
Process natural language queries to perform more intuitive searches.