@vskstudio/takt-mcp
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@@vskstudio/takt-mcpShow me the summary stats for today"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@vskstudio/takt-mcp
Model Context Protocol server for Takt — query your sites' privacy-friendly analytics from any MCP-aware AI agent (Claude Desktop, Claude Code, Cursor, …).
The server is a thin, read-only client over the Takt public API. It runs on your machine and talks to a Takt instance using your API key — by default the hosted origin https://taktlytics.com, or your own self-hosted instance via TAKT_BASE_URL.
┌─────────────┐ stdio (MCP) ┌────────────┐ HTTPS + Bearer ┌──────────────┐
│ AI agent │ ───────────────▶│ takt-mcp │ ──────────────────▶│ Takt instance│
│ (Claude, …) │ ◀────────────── │ (this pkg) │ ◀───── JSON ────── │ /api/v1 │
└─────────────┘ └────────────┘ └──────────────┘Requirements
Node.js ≥ 18
A Takt account on the hosted service (
https://taktlytics.com), or a self-hosted Takt instance (setTAKT_BASE_URL)A Takt API key (Dashboard → Settings → API keys) with the permissions for the tools you want to use:
stats:read— every reporting tool (summary, timeseries, breakdown, realtime, goals, funnels, revenue, event properties, property breakdown)sites:read—list_sites
A Takt API key is bound to a single site. So
list_sitesreturns just that one site, and thedomainyou pass to the other tools must be the key's own domain (any other domain returns "site not found"). To cover several sites, mint one key per site and run one server instance per key.
Related MCP server: plausible-whenever-mcp
Quick start
The server runs straight from npm with npx — nothing to install or build. Every
client below boils down to the same command, npx -y @vskstudio/takt-mcp, plus
your TAKT_BASE_URL / TAKT_API_KEY in the environment.
Claude Code
One command, no file to edit (use -s user for a global install instead of the
current project):
claude mcp add takt \
-e TAKT_BASE_URL=https://taktlytics.com \
-e TAKT_API_KEY=takt_sk_… \
-e TAKT_ORG=my-org \
-- npx -y @vskstudio/takt-mcpClaude Desktop
Edit claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"takt": {
"command": "npx",
"args": ["-y", "@vskstudio/takt-mcp"],
"env": {
"TAKT_BASE_URL": "https://taktlytics.com",
"TAKT_API_KEY": "takt_sk_…",
"TAKT_ORG": "my-org"
}
}
}
}Codex CLI
Add a block to ~/.codex/config.toml:
[mcp_servers.takt]
command = "npx"
args = ["-y", "@vskstudio/takt-mcp"]
env = { TAKT_BASE_URL = "https://taktlytics.com", TAKT_API_KEY = "takt_sk_…", TAKT_ORG = "my-org" }Cursor / Windsurf
Use the same mcpServers JSON as Claude Desktop, in ~/.cursor/mcp.json
(Cursor) or ~/.codeium/windsurf/mcp_config.json (Windsurf).
VS Code (Copilot / Cline)
code --add-mcp '{"name":"takt","command":"npx","args":["-y","@vskstudio/takt-mcp"],"env":{"TAKT_BASE_URL":"https://taktlytics.com","TAKT_API_KEY":"takt_sk_…","TAKT_ORG":"my-org"}}'Or commit a .mcp.json (Cline) / .vscode/mcp.json (Copilot, under a "servers"
key) with the same fields.
Any other MCP client
The package ships a takt-mcp binary speaking MCP over stdio, so any client that
can launch a command works:
TAKT_BASE_URL=https://taktlytics.com TAKT_API_KEY=takt_sk_… npx -y @vskstudio/takt-mcpUseful flags:
npx @vskstudio/takt-mcp --version # print the version
npx @vskstudio/takt-mcp --help # print usage and the full environment referenceConfiguration
The server is configured entirely through environment variables:
Variable | Required | Default | Description |
| no |
| Base URL of the Takt instance. Defaults to the hosted origin; set it to point at a self-hosted instance. Must be |
| yes | — | API key, sent as a |
| no | — | Default organization slug for |
| no |
| Per-request timeout in ms (range |
| no |
| Retries on transient failures — |
| no |
| Set to |
Invalid values fail fast at startup with a clear message on stderr.
Tools
Tool | Description | Permission |
| List the sites (domains) in an organization. |
|
| Top-line metrics: visitors, sessions, pageviews, bounce, duration. |
|
| Visitors/pageviews over time, bucketed by hour or day. |
|
| Top values of a dimension (pages, sources, countries, devices, …). |
|
| Visitors active in the last 5 minutes. |
|
| Conversions per goal. |
|
| Step-by-step funnel reports. |
|
| Revenue grouped by currency for a revenue event. |
|
| List the custom property keys recorded for an event. |
|
| Break down a custom property of an event by value. |
|
Most tools accept a time filter:
period— one ofday,7d,30d,month,6mo,12mo(default7d),or an explicit
from/torange (YYYY-MM-DD),plus an optional
tz(IANA timezone, e.g.Europe/Paris).
get_summary and get_timeseries also accept compareToPrevious to return the previous period of equal length. get_breakdown accepts dimension, an optional country (ISO-3166 alpha-2), and limit.
See the Tools reference for the full parameter list of each tool.
Resources
When TAKT_ORG is set, the server exposes one MCP resource:
URI | Description |
| The sites in your organization, as JSON — context without a tool call. |
How it works
stdio transport. stdout carries the MCP protocol; all diagnostics go to stderr.
Resilient HTTP. Each request has a timeout (
TAKT_TIMEOUT_MS) and retries transient429/5xx/network errors with exponential backoff and jitter, honouringRetry-After.Clean errors. Non-2xx responses are normalised to a
Takt API error (status code): message, including the402 quota_api_depassebilling case.Safe by construction. The base URL is validated; org/domain inputs are URL-encoded so they can't inject path segments; the API key never appears in any output.
See docs/architecture.md for the module layout and design rationale.
Troubleshooting
Symptom | Likely cause / fix |
| If set, it must be a full URL — e.g. |
| Include the scheme, e.g. |
| The key is wrong or revoked. |
| The key lacks the required permission ( |
| The |
| The API quota for your plan is exhausted. |
| Raise |
Set TAKT_DEBUG=1 to see each request (method, path, query) and retry decisions on stderr.
Development
pnpm install
pnpm test # vitest
pnpm typecheck # tsc --noEmit
pnpm lint # eslint
pnpm build # tsup → dist/The full gate (what CI runs): pnpm lint && pnpm typecheck && pnpm test && pnpm build. See CONTRIBUTING.md.
Documentation
Tools reference — every tool and parameter
Configuration — env vars and tuning
Architecture — modules and design
Recipes — example prompts and flows
Project wiki
License
MIT © VSK Studio
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/vskstudio/takt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server