Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Tokei Agent

FreeNot checked

MCP server for managing Tokei pre-launch and waitlist campaigns, wrapping the Tokei v1 REST API. Enables querying pages, stats, leaderboards, signups, and perfo

GitHubEmbed

About

MCP server for managing Tokei pre-launch and waitlist campaigns, wrapping the Tokei v1 REST API. Enables querying pages, stats, leaderboards, signups, and performing write operations like cloning pages and uploading media through natural language.

README

Control your Tokei pre-launch and waitlist campaigns from the command line — and from AI agents like Claude Code and OpenClaw. Wraps the Tokei v1 REST API with JSON-only output, zero runtime dependencies.

Install

npm install -g tokei-agent
# or run without installing:
npx tokei-agent --help

Requires Node 22+.

Quick start

  1. Create an API key at tokei.io → Dashboard → Settings → API Keys. Pick read-only unless you need to change things; API access requires an active subscription or lifetime plan.

  2. Export it — the syntax differs by shell:

export TOKEI_API_KEY=tokei_k_...          # bash / zsh
set -x TOKEI_API_KEY tokei_k_...          # fish
$env:TOKEI_API_KEY = "tokei_k_..."        # PowerShell
  1. Try it:
tokei-agent me                       # verify the key, see plan + API usage
tokei-agent pages:list --status active
tokei-agent stats <contestId>        # analytics for one page

Every command prints JSON to stdout with a top-level rate_limit object. Exit codes: 0 success, 1 API/network error, 2 usage error (JSON on stderr).

Known issue — exit codes on Node 24 / Windows (fixed in 0.2.3). On 0.2.2 and earlier the CLI could print its correct JSON output and then abort during process exit, corrupting the exit code ($LASTEXITCODE read -1073740791 / 0xC0000409 on success and failure alike). On an affected version, judge a run by the JSON on stdout, not by the exit status — or upgrade.

Commands

Read (any key):

Command Does
me Verify the key; account, plan, API usage
pages:list List pages — --status, --mode, --page, --per-page
pages:get <contestId> One page in full (prizes, reward tiers, public URL)
stats <contestId> Aggregated analytics
leaderboard <contestId> Participants ranked by points
entries:list <contestId> Signups — filter with --email
surveys:list <contestId> Survey responses
webhooks:list List webhook subscriptions
templates:list The platform's named starting points, for pages:clone --template

Write (needs a read+write key):

Command Does
pages:clone Create a page by cloning one you own, a named template, or the starter. 20/day cap
media:upload <file> Upload an image or video, get back a public_url for pages:update. ≤5MB per file (video too)
pages:update <contestId> Update title, description, dates, prizes, reward tiers, appearance, and media
pages:publish <contestId> Take a page live (needs a future end_date)
pages:unpublish <contestId> Back to draft — blocks new signups, but the page still renders publicly
entries:create <contestId> Add a signup
webhooks:create Subscribe an HTTPS endpoint (whsec_ secret shown once — save it!)
webhooks:delete <webhookId> Remove a subscription

Write commands take simple fields as flags and full/nested bodies via --data '<json>' or --data @file.json (flags win on conflict). Run tokei-agent --help for every flag, or see SKILL.md — the agent-oriented reference bundled in this package, with worked examples and error-handling guidance.

tokei-agent pages:clone --title "Spring Launch Waitlist" --source <promotionId>
tokei-agent pages:update <contestId> --end-date 2026-09-01T00:00:00Z
tokei-agent media:upload ./hero.png
tokei-agent pages:update <contestId> --image-video <public_url from the upload above>

MCP server

The package doubles as a local MCP server (stdio): every command above becomes an MCP tool (pages_list, pages_update, stats, …) for Claude Code, Claude Desktop, and other MCP clients.

claude mcp add tokei --env TOKEI_API_KEY=tokei_k_... -- npx -y tokei-agent mcp

Or in JSON config:

{
  "mcpServers": {
    "tokei": {
      "command": "npx",
      "args": ["-y", "tokei-agent", "mcp"],
      "env": { "TOKEI_API_KEY": "tokei_k_..." }
    }
  }
}

Environment

Variable Required Meaning
TOKEI_API_KEY Yes Sent as Authorization: Bearer <key>
TOKEI_API_URL No Base URL override (default https://tokei.io)

Agents, human in the loop

Tokei is built so agents draft and humans approve: give monitoring agents a read-only key, reserve read+write keys for agents that genuinely need to change things, and set key expiry. New webhook subscriptions created via the API trigger a security notification to the account owner.

Docs

License

MIT

from github.com/gilesdawe/tokei-agent

Install Tokei Agent in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install tokei-agent

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add tokei-agent -- npx -y tokei-agent

Step-by-step: how to install Tokei Agent

FAQ

Is Tokei Agent MCP free?

Yes, Tokei Agent MCP is free — one-click install via Unyly at no cost.

Does Tokei Agent need an API key?

No, Tokei Agent runs without API keys or environment variables.

Is Tokei Agent hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Tokei Agent in Claude Desktop, Claude Code or Cursor?

Open Tokei Agent on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Tokei Agent with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All media MCPs