Skip to main content
Use Migma MCP with GitHub Copilot when Copilot Agent mode needs to prepare emails, inspect contacts, create campaigns, or wire email sends while editing code.

VS Code

Add Migma to mcp.json in your user profile or workspace:
{
  "inputs": [
    {
      "type": "promptString",
      "id": "migma-api-key",
      "description": "Migma API key",
      "password": true
    }
  ],
  "servers": {
    "migma": {
      "type": "http",
      "url": "https://migma.ai/mcp",
      "headers": {
        "Authorization": "Bearer ${input:migma-api-key}"
      }
    }
  }
}
Reload MCP tools from VS Code, then use Copilot Agent mode.

Copilot CLI

If your Copilot CLI setup reads mcpServers, use Local MCP:
{
  "mcpServers": {
    "migma": {
      "command": "npx",
      "args": ["-y", "@migma/mcp"],
      "env": {
        "MIGMA_API_KEY": "your_migma_api_key"
      }
    }
  }
}

Verify

Ask Copilot:
Use Migma to list my brands and call migma_get_capabilities.

Next

VS Code

Editor-level MCP setup.

Setup Workflow

Agent-guided app wiring.