streamable-httpMITupdated 1mo ago
A remote MCP server, live at https://twocents.page/mcp. Connect it and your AI agent can send any HTML page to real people for visual review — and read their pinned notes back. No auth, no API key, no install for reviewers.
What can you do with twocents?
twocents — human feedback for AI agents (MCP server)
A remote MCP server, live at https://twocents.page/mcp.
Connect it and your AI agent can send any HTML page to real people for visual
review — and read their pinned notes back. No auth, no API key, no install for
reviewers.
Tools
share_page— send a self-contained HTML document, get back a review link. Anyone who opens it can pin notes directly on the page — no login, works on any device. Call again with the same room id and connected reviewers see the update live.get_feedback— the pinned notes, returned as markdown with the anchor text/selector for each note so your agent can find and fix the exact spot. Pass the optionalhandledarray (note ids already decided in earlier sessions) and those collapse to one line each, so the response leads with what's new.
Config
{
"mcpServers": {
"twocents": {
"url": "https://twocents.page/mcp"
}
}
}
Connect
Claude Code
claude mcp add --transport http twocents https://twocents.page/mcp
Claude.ai (web or desktop) — Settings → Connectors → Add custom connector →
paste https://twocents.page/mcp
Cursor or any MCP client — use the config block above (an HTTP MCP server; no auth, no API key).
The loop
Ask your agent to "share this page for feedback" → send the link to anyone → they pin notes on the live page → ask your agent to "get the feedback" and apply it. The whole review cycle without leaving your editor.
What's in this repo
The complete server source: mcp.js — a zero-dependency Streamable
HTTP (stateless) JSON-RPC handler, ~300 lines. It runs inside a Cloudflare Worker
and stores pages/notes in a Durable Object per review room (env.ROOMS); the
Worker, relay, and reviewer UI live in the main (private) twocents.page codebase.
server.json is the MCP registry
manifest (page.twocents/twocents).
Privacy model: a room id is an unguessable capability — knowing it is the permission to read/write that room. Review links are excluded from search indexing.
See it in action
Every page in our interactive explainer library has a live review room — open one and pin a note. Or get feedback on your own work.
Install
Add twocents to your client. Pick the one you use.
claude mcp add --transport http twocents https://twocents.page/mcpcodex mcp add twocents --url https://twocents.page/mcp{
"mcpServers": {
"twocents": {
"url": "https://twocents.page/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"twocents": {
"type": "http",
"url": "https://twocents.page/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"twocents": {
"url": "https://twocents.page/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"twocents": {
"serverUrl": "https://twocents.page/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation22/25
- Maintenance19/25
- Trust16/20
- Capability0/15
- Install experience12/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 30 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
- 0 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
Version history
| Versions | Published |
|---|---|
| 1.0.1Latest | Aug 2, 2026 |
| 1.0.0 | Jul 22, 2026 |