Install
$ agentstack add mcp-p-essonam-clicsdev ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Clics
Privacy-friendly, cookieless web analytics — built for teams that want GDPR-friendly measurement without tracking cookies.
- Website: clics.dev
- Dashboard: platform.clics.dev
- Docs: clics.dev/docs
Clics measures traffic, goals, and funnels on your sites. This repository distributes agent-facing tooling so AI assistants can query analytics and manage your workspace from the terminal, a local MCP client, or a web-based assistant.
What you get
| Tool | Package / endpoint | Best for | |------|-------------------|----------| | Remote MCP | Hosted endpoint (see below) | ChatGPT, Claude.ai, n8n, and other HTTP MCP clients | | Local MCP | @clicsdev/mcp | Cursor, Claude Code, VS Code, Windsurf, and other stdio MCP clients | | CLI | @clicsdev/cli | Scripts, CI, and manual verification from the terminal | | Agent skill | this repo | Teaching agents when and how to use Clics MCP + CLI |
Create an API key in the dashboard.
Remote MCP
Hosted Model Context Protocol server over HTTP Streamable. Use this when your assistant runs in the browser or in a workflow tool and cannot run a local npx process.
Endpoint (replace YOUR_API_KEY with your Clics API key):
https://api.clics.dev/YOUR_API_KEY/v1/mcp
The API key is embedded in the URL. Set authentication to None in the client; no extra headers are required.
Tools: same 15 tools as local MCP (list_projects, get_project, create_project, update_project, delete_project, list_goals, create_goal, update_goal, delete_goal, list_funnels, get_funnel, create_funnel, update_funnel, delete_funnel, query_stats).
ChatGPT
- Create an API key in the dashboard.
- In ChatGPT, open Settings → Advanced Settings and enable Developer mode.
- Open Apps & Connectors → Create.
- Fill in:
- Name:
Clics MCP - MCP Server URL:
https://api.clics.dev/YOUR_API_KEY/v1/mcp - Authentication:
None
- Save and enable the connector in a conversation.
Claude.ai
- Create an API key in the dashboard.
- Go to Settings → Connectors → Add custom connector.
- Set URL to
https://api.clics.dev/YOUR_API_KEY/v1/mcp(leave OAuth fields blank). - In a conversation, enable the connector from Connectors.
n8n
- Create an API key in the dashboard.
- In your workflow, add an AI Agent node.
- Add a tool → MCP Client Tool.
- Configure:
- Endpoint:
https://api.clics.dev/YOUR_API_KEY/v1/mcp - Server Transport:
HTTP Streamable - Authentication:
None
- Choose which tools to expose (All, Selected, or All Except).
Local MCP (@clicsdev/mcp)
Local Model Context Protocol server (stdio) for cookie-free analytics. Manage projects, goals, funnels, and query stats from your editor when it can run a local process.
Install
npm install -g @clicsdev/mcp
# or: npx -y @clicsdev/mcp
Authenticate — set CLICS_API_KEY in your MCP client config (never pass the key as a tool argument).
Cursor (.cursor/mcp.json):
{
"mcpServers": {
"clics": {
"command": "npx",
"args": ["-y", "@clicsdev/mcp"],
"env": {
"CLICS_API_KEY": "your_api_key"
}
}
}
}
Tools: list_projects, get_project, create_project, update_project, delete_project, list_goals, create_goal, update_goal, delete_goal, list_funnels, get_funnel, create_funnel, update_funnel, delete_funnel, query_stats.
Full client setup: npm/@clicsdev/mcp
CLI (@clicsdev/cli)
Command-line interface for the same operations — JSON on stdout, ideal for automation and quick checks.
Install
npm install -g @clicsdev/cli
# or: npx @clicsdev/cli --help
Authenticate
clics init --api-key ""
Examples
clics projects list
clics goals list
clics query --metrics visitors pageviews bounce_rate --date-range last30days
Full command reference: npm/@clicsdev/cli
Agent skill
The clics skill teaches agents to prefer MCP when connected, fall back to CLI when not, and follow analytics playbooks (overview, top pages/countries, goals/funnels).
Install with the skills CLI:
npx skills add P-Essonam/clicsdev --skill clics
Global install (all projects):
npx skills add P-Essonam/clicsdev --skill clics -g -y
List skills without installing:
npx skills add P-Essonam/clicsdev --list
Skill source: [skills/clics/SKILL.md](skills/clics/SKILL.md)
License
MIT
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: P-Essonam
- Source: P-Essonam/clicsdev
- License: MIT
- Homepage: https://clics.dev
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.