VS Code
Add Migma tomcp.json in your user profile or workspace:
Copilot CLI
If your Copilot CLI setup readsmcpServers, use Local MCP:
Verify
Ask Copilot:Next
VS Code
Editor-level MCP setup.
Setup Workflow
Agent-guided app wiring.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
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.
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}"
}
}
}
}
mcpServers, use Local MCP:
{
"mcpServers": {
"migma": {
"command": "npx",
"args": ["-y", "@migma/mcp"],
"env": {
"MIGMA_API_KEY": "your_migma_api_key"
}
}
}
}
Show my Migma context and suggest what we should do first.
Was this page helpful?