Tag

#Cursor

354 results found

Logly
@logly-uk

Logly MCP server Query your Logly web analytics from Claude, Cursor, or any Model Context Protocol client. Logly is privacy-first web analytics — under 1 KB, cookie-free, GDPR compliant by design. This server exposes your analytics over MCP so an AI assistant can answer questions like "how did traffic change this week?" or "where is my signup funnel losing people?" — and even hand you the install snippet for a new site. Requirements Node.js 18 or newer A Logly account and an API key — create one in Settings → API keys in your Logly dashboard. The key looks like logly_a1b2c3... and is shown only once. Setup The server runs via npx — no install step needed. Claude Desktop Edit claude_desktop_config.json (Settings → Developer → Edit Config): { "mcpServers": { "logly": { "command": "npx", "args": ["-y", "@logly-uk/mcp"], "env": { "LOGLY_API_KEY": "logly_your_key_here" } } } } Restart Claude Desktop. Claude Code claude mcp add logly -e LOGLY_API_KEY=logly_your_key_here -- npx -y @logly-uk/mcp Cursor Add to .cursor/mcp.json in your project (or the global one): { "mcpServers": { "logly": { "command": "npx", "args": ["-y", "@logly-uk/mcp"], "env": { "LOGLY_API_KEY": "logly_your_key_here" } } } } Tools Tool What it does logly_list_sites List every site in your account with its site ID — start here. logly_stats Pageviews, sessions, visitors, bounce rate, avg duration, daily series, previous-period comparison. logly_breakdown Top pages, referrers, countries and device/browser split. logly_realtime Visitors active right now. logly_events Custom event counts. logly_funnels List a site's conversion funnels and their steps. logly_funnel_results Completion counts and drop-off per funnel step. logly_install_snippet The <script> tag to add Logly to a site's <head>. Date filters Stats tools accept a days window (7, 30 or 90 — defaults to 30) or an explicit from / to pair (YYYY-MM-DD). If both are given, from/to wins. Environment variables Variable Required Purpose LOGLY_API_KEY yes Your Logly API key. LOGLY_API_BASE no Override the API base URL (default https://app.logly.uk).

14 days ago
Verify Action
@Armada735

Verify AI agent tool calls with content-addressed, HMAC-attested receipts. Free third-party verification API for AI agents. Call verify_action(claim, evidence) to get an independent integrity check on whether your claimed action matches the actual evidence. Useful for catching silent failures: incorrect SQL operations, file-op mismatches, API call inconsistencies, and code-diff scope creep. Five specialized verifier kinds: - code_diff: verb / path / identifier coherence with unified diff - db_op: row delta + SQL operation + ID match - file_op: existence state + line/size delta - api_call: request body and response status coherence - generic: conservative fallback Returns: - aar_verdict: verified | contradicted | insufficient_evidence | unsafe_to_verify - verdict: ok | mismatch | uncertain (legacy 3-value alias) - reasoning, confidence - receipt: verify_action_receipt.v0 with HMAC-SHA256 signature, content-addressed via SHA-256 hashes of claim and evidence Cross-vendor: works with Claude Code, Cursor, Cline, Codex, Codeium, and any MCP-compatible harness. Stateless, per-request, no API key, no registration. Pure Python stdlib (no pip install). Anonymized telemetry only — no PII, no model fingerprint, no raw claim/evidence retention. Honest scope: this is a small reference implementation, not a canonical inter-vendor standard. v0 receipts use HMAC-SHA256 (symmetric, single-issuer); v1 with ed25519 + multi-issuer is on the roadmap. The hosted endpoint has no SLA — self-host for stability (git clone && ./start.sh). 90-day probe with explicit kill criteria. If adoption appears, v1 schema work begins. If response is null, the null is itself a publishable data point.

a month ago