Features
- Logs API — raw, un-sampled row export — four new tools (
logs_request,logs_status,logs_download,logs_clean) expose the raw session (visits) and hit (hits) rows the aggregate Reporting API can't return. The async lifecycle (request → poll → download → clean) is shaped as a small, agent-friendly surface rather than mirrored 1:1 from the REST endpoints:logs_requestchecks feasibility then queues preparation,logs_statuspolls it and reports storage-quota usage, andlogs_downloadreturns a bounded inline sample by default or streams the full export to a file — so raw content (potentially millions of rows) never enters the model's context. Personal fields (IP,clientID, URLs) are flagged viacontains_personal_datarather than blocked, and Logs API field ids are discoverable throughget_metadata
Improvements
- Installable as a Claude Code plugin — the repo now ships as a Claude Code plugin and can be added straight from the client, with the one-line install documented in the Quickstart
- Automatic client configuration — a root
.mcp.jsonlets MCP clients discover and configure the server (command, args, and directory) without hand-writing the entry
Bug Fixes
contains_sensitive_datasurfaced in report metadata — the Reporting API sets this flag when limited-disclosure rules were applied, but the formatter silently dropped it; it is now included in every report'smeta, so an agent can tell when Yandex Metrica suppressed part of a result (thanks @SergeNS-mne, #9)
Docs
- README leads with a demo GIF and secretless login — the README now opens with a demo GIF and a no-app-registration, PKCE-login quickstart, so the fastest path to a working server is the first thing a reader sees
Internal / Dependencies
- Hardened release pipeline — CI actions are pinned to commit SHAs and the release publish job was tightened (#6), and releases now auto-publish to the official MCP registry via OIDC (no secrets)
- Dependabot moved to the
bunecosystem so it updatesbun.lock, with minor/patch bumps auto-merged and update PRs grouped - Bump
@types/nodeto 26.1.1 (#8), the dev-dependencies group (#7, #10), andactions/checkoutto v7 (#3)
Full Changelog: v0.1.3...v0.2.0