September 5, 2026

Claude Code

Connect Wooxy to Claude Code via MCP. Generate templates, manage campaigns, and pull analytics from the terminal coding workflow with natural language.

Connect Wooxy's marketing toolset to Claude Code to run campaigns, generate templates, and query analytics directly from the terminal. Once configured, Claude Code can handle these tasks through natural-language prompts without leaving the development workflow.

Prerequisites

  • Claude Code installed (installation guide).

  • Node.js installed (required for MCP server resolution).

  • A Wooxy account.

MCP Server connection

Run the following command in the terminal (not inside the Claude Code CLI):

JSON
                claude mcp add --transport http wooxy https://mcp.wooxy.com/mcp
            

To make the server available across all projects, add the -s user scope flag:

JSON
                claude mcp add --transport http -s user wooxy https://mcp.wooxy.com/mcp
            

Alternative: config edit

The server can also be added by editing ~/.claude.json directly:

JSON
                {
  "mcpServers": {
    "wooxy": {
      "type": "http",
      "url": "https://mcp.wooxy.com/mcp"
    }
  }
}
            

Restart Claude Code, or the terminal it's running in, after editing the config file.

Authentication

On first use, Claude Code will prompt for authentication with Wooxy. Run /mcp inside Claude Code and follow the browser-based OAuth flow to authorize access.

Verifying the Connection

After setup, confirm the server is active:

JSON
                claude mcp list
            

Or from inside Claude Code:

JSON
                /mcp
            

Wooxy should appear listed with a connected status.

Usage

Once connected, Claude Code can be prompted with a marketing task:

JSON
                Generate an email template announcing our product launch using Wooxy.
            

Claude Code calls the Wooxy toolset to handle brand resolution, template generation, or campaign/analytics requests. Generated templates and reports are also accessible from the corresponding sections of the Wooxy dashboard.

  • Scoping
    Icon caret
    • Scope[Local (default)] | Flag[none] | Config location[.mcp.json in project directory] | Availability[Current project only]
    • Scope[User] | Flag[-s user] | Config location[~/.claude.json] | Availability[All projects for current user]