Connect your AI to Clickmax
For your AI to genuinely operate Clickmax, it needs two pieces that go together:
- MCP (Model Context Protocol) — gives the AI real-time access to your account's tools and data (leads, transactions, funnels, members…).
- Skills — teach the AI to use Clickmax: the rules, concepts and flows of each area.
- MCP without Skills: the AI has the tools but does not understand Clickmax — and builds the wrong funnels, flows and segments.
- Skills without MCP: the AI knows what to do but has nowhere to do it.
The setup below connects the two. Follow the 4 steps in order.
Prerequisites
- a client that supports remote MCP over HTTP (Claude Code, Cursor, Codex, etc.);
- a valid Bearer token for your Clickmax account (step 1);
- a terminal with
npxavailable (step 3).
Step 1 — Create your MCP token
Generate a token in your account:
Create MCP token
The token is prefixed with cx-token-:
It gives access to your account's data. Do not publish it in repositories, screenshots or logs. You can revoke it and generate another at any time on the same screen.
Step 2 — Connect MCP
The server uses Streamable HTTP:
Every request needs the authentication header:
Pick the tab for your client and swap <SEU_TOKEN_MCP> for the token from step 1:
Then, inside a Claude Code session, check the connection:
Step 3 — Install the Skills
The public Agent Skills teach the AI to operate each area of the platform. Install them all with one command:
The command discovers and installs the skills from the docs discovery index (/.well-known/agent-skills/index.json).
The base URL on its own, to paste into the command:
Prefer to install manually? Download the package with every skill already organised into folders (<skill>/SKILL.md + reference files):
Download clickmax-skills.zip
Step 4 — Test
With MCP connected and the skills installed, ask for a real task:
If everything is right, the AI returns your identity, reads real data from the account and calls the skill that matches the task. If the client does not load the skill on its own, ask for it by name (e.g. Use the clickmax-pipelines skill…).
Skills catalogue
There are 17 public skills, grouped by area. The phrase "Use when" is the trigger the AI uses to load the skill — describe your task in those terms to call it up.
CRM
Payments and offers
Members
Automations and funnels
The list above is a readable summary. The source of truth, with full descriptions and hashes, lives at /.well-known/agent-skills/index.json.
For agents — programmatic discovery
Endpoints served by the docs for clients compatible with Agent Skills:
Each index entry carries name, description, type (skill-md or archive), url and digest (sha256) for integrity checking.
Troubleshooting
Security good practice
- Never commit or share the token in repositories, screenshots or logs.
- Prefer environment variables when the client supports interpolation in the header.
- Keep the server named
clickmaxto make it easier to identify and support. - Revoke the token immediately if you suspect it has been exposed, and generate a new one.