Skip to main content
Use Migma MCP in VS Code when your editor or agent extension supports MCP servers.

Remote MCP

VS Code stores MCP servers in mcp.json, either in your user profile or in .vscode/mcp.json for a 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}"
      }
    }
  }
}
After editing the file, run MCP: List Servers or MCP: Reset Cached Tools from the Command Palette.

Local MCP fallback

{
  "servers": {
    "migma": {
      "command": "npx",
      "args": ["-y", "@migma/mcp"],
      "env": {
        "MIGMA_API_KEY": "your_migma_api_key"
      }
    }
  }
}

Verify

Ask your VS Code agent:
Use Migma to list my brands. Do not send or export anything.

Next

MCP Server

Remote and local MCP details.

Authentication

Create or scope API keys.