VS Code with Copilot MCP Integration
Through the button:
- Click on Install
- Allow when prompted, it will take you to OAuth page
- Login using your CreateOS credentials
Overview
Integrate CreateOS with VS Code using the MCP (Model Context Protocol) to enable AI-powered deployment workflows directly from your development environment.
Prerequisites
- Active VS Code installation
- CreateOS account with API key access
- GitHub connected to VS Code
Setup Instructions
Step 1: Create MCP Configuration File
- Open your workspace in VS Code
- Create a new folder named
.vscodein your workspace root (if it doesn't already exist) - Inside the
.vscodefolder, create a new file namedmcp.json
Step 2: Configure Connection Settings
Paste the following configuration into your mcp.json file:
1{2 "servers": {3 "createos": {4 "url": "https://api-createos.nodeops.network/mcp",5 "type": "http",6 "headers": {7 "X-Api-Key": "CREATEOS_API_KEY"8 }9 }10 },11 "inputs": []12}
Getting Your API Key:
- Log in to CreateOS
- Navigate to Profile Settings
- Copy your API key from the API Key section
Watch Tutorial →
Security Note: Keep your API key confidential and never share it publicly.
Replace "CREATEOS_API_KEY" with your actual CreateOS API key in the configuration.
Step 3: Apply Configuration
- Save the
mcp.jsonfile - Restart VS Code to apply the configuration changes
Demo Video
Vibecode and deploy through CreateOS MCP: Demo