HELP CENTER

MCP server

Manage your WAzion store from Claude Desktop, ChatGPT, Cursor, VS Code, and any client compatible with MCP.

What is MCP?

MCP (Model Context Protocol) is an open standard that allows AI assistants to connect with external services. It is like a “universal USB“ for AI: any compatible client can use the tools that WAzion exposes.

What does it mean to you?

  • 1 You can manage your WAzion store from Claude Desktop, ChatGPT, Cursor, or VS Code.
  • 2 show me the status of my store“ or “change the language to English
  • 3 All the actions on the dashboard are available as MCP tools.

2. How to connect

Connection data:
URL: https://www.wazion.com/api/mcp/
Auth: Bearer YOUR_TOKEN

Claude Desktop (macOS)

Prerequisite: install mcp-remote with Node.js from Homebrew:

/opt/homebrew/bin/npm install -g mcp-remote

Edit the configuration file:

// ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "wazion": {
      "command": "/opt/homebrew/bin/node",
      "args": [
        "/opt/homebrew/lib/node_modules/mcp-remote/dist/proxy.js",
        "https://www.wazion.com/api/mcp/",
        "--transport", "http-only",
        "--header", "Authorization: Bearer TU_TOKEN"
      ]
    }
  }
}

Note: Claude Desktop uses the system’s Node.js (/usr/local/bin/node) which may be outdated. That’s why we directly reference the Homebrew binary.

Claude Code (terminal)
// .mcp.json en tu proyecto
{
  "mcpServers": {
    "wazion": {
      "type": "url",
      "url": "https://www.wazion.com/api/mcp/",
      "headers": {
        "Authorization": "Bearer TU_TOKEN"
      }
    }
  }
}
ChatGPT (web / desktop)
  1. 1 Settings → Connections → Add Connection
  2. 2 URL: https://www.wazion.com/api/mcp/
  3. 3 Auth: Bearer token
Cursor (editor)
// .cursor/mcp.json
{
  "mcpServers": {
    "wazion": {
      "url": "https://www.wazion.com/api/mcp/",
      "headers": {
        "Authorization": "Bearer TU_TOKEN"
      }
    }
  }
}
VS Code Copilot
// .vscode/mcp.json
{
  "servers": {
    "wazion": {
      "type": "http",
      "url": "https://www.wazion.com/api/mcp/",
      "headers": {
        "Authorization": "Bearer TU_TOKEN"
      }
    }
  }
}

Other clients (Windsurf, Cline, etc.)

Any client compatible with MCP Streamable HTTP can connect using the URL and the Bearer token. Check your client’s documentation to find out where to configure MCP servers.

3. Where to find your token

Your token is the same as the one that appears in the URL when you access the WAzion dashboard:

https://www.wazion.com/dashboard/TU_TOKEN

You can also find it in Dashboard → Account, in the store information section.

Important: Your token provides full access to your store. Do not share it publicly or include it in code repositories.

4. What you can do

All the actions available on the dashboard are presented as MCP tools. Some categories:

Settings

  • Change language, time zone, date format
  • View store status
  • Manage credits

Agents

  • Create, edit, and delete agents
  • Manage permissions
  • Assign schedules

AI and Prompt

  • Update the AI prompt
  • Manage learned data
  • Set up custom functions

Integrations

  • Connect/disconnect Shopify
  • Set up webhooks and CRM endpoints
  • Manage plugins

5. Actions with confirmation

Some potentially dangerous actions (removing agents, disconnecting Shopify, etc.) require explicit confirmation. The flow is:

1

First call (no confirm)

The server responds with a warning message describing what is going to happen. It does not execute the action.

2

Second call (with confirm: true)

The action is actually executed. MCP clients like Claude handle this flow automatically.

6. Examples of use

Once connected, simply ask your AI assistant for what you need:

"Show me the status of my WAzion store."

"Change the language of my store to English."

"List my agents and their permissions"

"How many credits do I have left?"

"Create an agent named Support with hours from 9 to 18."

7. Frequently Asked Questions

Is it safe?

Yes. The connection is made over HTTPS and requires your private token. Dangerous actions require additional confirmation. Your token is never shared with third parties.

Is there an additional cost?

No. The MCP server is included in all plans. Actions that consume credits (such as AI responses) are deducted from your normal balance.

Can I use it with any MCP client?

Yes. WAzion implements the MCP Streamable HTTP standard (spec 2025-03-26), compatible with any client that supports this protocol.

What actions are available?

All the actions of the dashboard: settings, agents, prompt, plugins, integrations, statistics, WhatsApp Auto, mass marketing, and more. The tools are generated automatically and are always up to date.

Related articles

WAzion Assistant

Commercial information and technical support

Hello! I am the WAzion assistant. I can help you with information about prices and plans, technical questions, configuration, or any questions about our product. How can I assist you?
Developed with WAzion AI