Visual Studio Code is a versatile code editor that can be enhanced with AI capabilities through MCP servers. By adding Endgame, you'll enable VS Code to seamlessly deploy any code that it writes.

Install VS Code

If you don't already have VS Code installed, download it from the official VS Code website and follow their installation guide.

Add Endgame MCP Server

To add the Endgame MCP server to VS Code, you'll need to modify your VS Code settings:

  1. Open VS Code
  2. Go to File > Preferences > Settings (or press Ctrl/Cmd + ,)
  3. Click the Open Settings (JSON) button in the top right corner
  4. Add the following configuration to your settings.json:
{
  "mcp": {
    "servers": {
      "endgame": {
        "command": "npx",
        "args": ["endgame-mcp@latest"],
        "env": {
          "API_KEY": "your_endgame_api_key"
        }
      }
    }
  }
}

Replace your_endgame_api_key with your actual Endgame API key, which you can obtain from Endgame's dashboard.

Verify Installation

To confirm the MCP server has been correctly installed, restart VS Code and check that the Endgame tools are available through your AI extensions or MCP-compatible tools.

Once configured, you can use the Endgame tools directly within VS Code to manage your applications and deployments seamlessly.

On This Page