streamable-httpMITupdated 1mo ago
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.
UserTapes 能做什么?
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
| Tool | What it does |
|---|---|
list_sites |
The account's sites |
list_tapes |
Sessions for a site, newest first, filterable by errors, rage clicks, URL substring, duration, and date range |
read_transcript |
One session as a markdown transcript |
get_stats |
Aggregate counts over N days |
site_digest |
One-call briefing of the last N days |
list_alerts / create_alert / delete_alert |
Saved 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
- MCP server docs — endpoint, auth, connection config, full tool reference
- MCP agent access — feature overview
- Session replay over MCP — full protocol details and tool schema
License
MIT — see LICENSE. (This repo is documentation and a registry manifest; the UserTapes application itself is closed source.)
安装
把 UserTapes 添加到你的客户端。选择你正在使用的那个。
claude mcp add --transport http usertapes https://usertapes.com/mcpcodex mcp add usertapes --url https://usertapes.com/mcp{
"mcpServers": {
"usertapes": {
"url": "https://usertapes.com/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"usertapes": {
"type": "http",
"url": "https://usertapes.com/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"usertapes": {
"url": "https://usertapes.com/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"usertapes": {
"serverUrl": "https://usertapes.com/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
5 个工具
UserTapes 向已连接的智能体提供 5 个工具。
- list_sites
- The account's sites
- list_tapes
- Sessions for a site, newest first, filterable by errors, rage clicks, URL substring, duration, and date range
- read_transcript
- One session as a markdown transcript
- get_stats
- Aggregate counts over N days
- site_digest
- One-call briefing of the last N days
评分
72 / 100
良好
- 文档22/25
- 维护19/25
- 可信度13/20
- 能力6/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 28 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 5 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 1.0.1最新 | 2026年8月3日 |
| 1.0.0 | 2026年8月3日 |