Gamedev All In One MCP Server

Open-source all-in-one control plane for multi-engine game creation workflows, starting with a Luau runtime companion and Blender integration.

Remote serverstreamable-httpPython

What is the Gamedev All In One MCP MCP server?

Open-source all-in-one control plane for multi-engine game creation workflows, starting with a Luau runtime companion and Blender integration. That is what the gamedev all in one mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

Add to your MCP client config (Claude Desktop, Cursor, etc.):

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

The tools it exposes

The server publishes 6 tools. What each one is for:

  • project_init — Initialize project manifest
  • inspect_project — Read manifest state
  • doctor — Validate environment and connectors
  • list_capabilities — List all tools and connector status
  • Category — Tools
  • Installation — 1. Copy runtime/roblox-studio-plugin/GamedevAllInOne.server.lua to your Plugins folder: - Windows: %LOCALAPPDATA%\Roblox\Plugins\ - Mac

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

How it compares

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Gamedev All In One MCP's toolset — project_init, inspect_project, doctor and 3 more — is a fair guide to whether it matches your workflow. It is maintained by dmae97; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Available tools

ToolWhat it does
project_initInitialize project manifest
inspect_projectRead manifest state
doctorValidate environment and connectors
list_capabilitiesList all tools and connector status
CategoryTools
Installation1. Copy runtime/roblox-studio-plugin/GamedevAllInOne.server.lua to your Plugins folder: - **Windows**: %LOCALAPPDATA%\Roblox\Plugins\ - **Mac**: ~/Documents/Roblox/Plugins/ 2. Restart Roblox Studio 3. Enable: **Game Sett

How to install the Gamedev All In One MCP MCP server

{
  "mcpServers": {
    "gamedev-all-in-one": {
      "command": "npx",
      "args": ["-y", "npm"]
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Example prompts to try

  • Use Gamedev All In One MCP to project init.
  • Use Gamedev All In One MCP to inspect project.
  • Use Gamedev All In One MCP to doctor.

Frequently asked questions

It connects Gamedev All In One MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (project_init, inspect_project, doctor, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Gamedev All In One MCP directly.