Skip to content
VS Code

Maasy — AI Marketing Copilot for VS Code

io.github.jbelieve/maasy

AI marketing copilot: brand intelligence, campaigns, content, CRM, SEO, and skills for Claude.

client:VS Code transport:stdio runtime:npm

Install Maasy — AI Marketing Copilot in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "maasy-supabase-url",
      "description": "MAASY_SUPABASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "maasy-api-key",
      "description": "MAASY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "maasy-project-id",
      "description": "MAASY_PROJECT_ID",
      "password": true
    }
  ],
  "servers": {
    "maasy": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@maasy-ai/mcp-server"
      ],
      "env": {
        "MAASY_SUPABASE_URL": "${input:maasy-supabase-url}",
        "MAASY_API_KEY": "${input:maasy-api-key}",
        "MAASY_PROJECT_ID": "${input:maasy-project-id}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Maasy — AI Marketing Copilot in other clients