Back to Discover

usertapes-mcp

connector

mcdca

Query real user session replay data: tapes, transcripts, error/rage-click filters, alerts.

View on GitHub
0 starsSynced Aug 3, 2026

Install to Claude Code

/plugin marketplace add mcdca/usertapes-mcp

README

UserTapes MCP Server

UserTapes is a session replay tool. This is its Model Context Protocol server: a hosted, stateless JSON-RPC endpoint that lets any MCP client — Claude Code, Claude Desktop, Cursor, or your own agent — query what real users did on your site.

This repo does not contain the server's application source (that lives in the main UserTapes codebase). It exists to document and register the public connection details: the endpoint, its tools, and how to authenticate.

Why

Your coding agent can read your repository, your git history, and your test output. None of that describes what a real person actually did when something broke. UserTapes derives a text transcript from every recorded session — clicks, navigation, errors, rage clicks — so an agent can query sessions the same way it queries anything else, instead of you exporting a video and pasting it into a prompt.

Connecting

The server is one HTTP endpoint speaking stateless JSON-RPC 2.0 over Streamable HTTP (protocol revision 2025-06-18). Get a token from your account's Agent access page, then add:

{
  "mcpServers": {
    "usertapes": {
      "url": "https://usertapes.com/mcp",
      "headers": { "Authorization": "Bearer YOUR_MCP_TOKEN" }
    }
  }
}

No package install, no local process — the client talks to https://usertapes.com/mcp directly.

Tools

ToolWhat it does
list_sitesThe account's sites
list_tapesSessions for a site, newest first, filterable by errors, rage clicks, URL substring, duration, and date range
read_transcriptOne session as a markdown transcript
get_statsAggregate counts over N days
site_digestOne-call briefing of the last N days
list_alerts / create_alert / delete_alertSaved standing watches over sessions (e.g. "notify when a session hits an error on /checkout")

The MCP token is a distinct, revocable, read-scoped credential — separate from a site's ingest-only tracking token. Its only write surface is alerts; it cannot delete a recording, change a site, or touch billing.

Docs

License

MIT — see LICENSE. (This repo is documentation and a registry manifest; the UserTapes application itself is closed source.)

Rendered live from mcdca/usertapes-mcp's GitHub README — not stored, always reflects the source repo.

1 Install Method

NameDescriptionCategorySource
streamable-http remoteHosted streamable-http endpointmcp-serverhttps://usertapes.com/mcp

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet — be the first to share an update.