loading…
Search for a command to run...
loading…
Enables MCP-compatible AI agents to execute typed live-app actions over WebSocket, allowing agents to directly interact with real application state without brow
Enables MCP-compatible AI agents to execute typed live-app actions over WebSocket, allowing agents to directly interact with real application state without browser automation or scraping.
Docs · Examples · Install · Packages · Discord · Discussions
Built by BrainBlend AI
NEW: Join our community on Discord at discord.gg/J3W9b5AZJR — protocol questions, feedback, and SDK-contribution chat all welcome.
Live applications (browser tabs, Electron/Tauri desktop apps, Node daemons, CLIs) declare actions with a Zod-style builder; agents (Claude Code, Claude Desktop, Cursor, Copilot, Codex, Cline, ...) call them as MCP tools. Your real handler runs against your real state. No browser automation, no scraping, no Playwright.
ctx.confirm for yes/no, ctx.elicit for schema-validated prompts, ctx.sample for agent LLM calls, ctx.progress for streaming updates, subscribable resources for live reads./plugin marketplace add BrainBlend-AI/tesseron
/plugin install tesseron@tesseron
That installs the tesseron Claude Code plugin, which spawns the MCP gateway automatically and registers it as an MCP server. Then drop @tesseron/web, @tesseron/server, or @tesseron/react into your app, declare actions, and let Claude drive your real UI.
import { tesseron } from '@tesseron/web';
import { z } from 'zod';
tesseron.app({ id: 'todo_app', name: 'Todo App' });
tesseron
.action('addTodo')
.input(z.object({ text: z.string().min(1) }))
.handler(({ text }) => {
state.todos.push({ id: newId(), text, done: false });
render();
return { ok: true };
});
await tesseron.connect();
For other MCP clients (Claude Desktop, Cursor, Codex, VS Code Copilot, ...) see the one-time setup in examples/README.md.
See examples/ for working apps in vanilla TS, React, Svelte, Vue, Express, and plain Node.
| Package | Purpose |
|---|---|
| @tesseron/core | Protocol types, action builder. Zero runtime deps beyond Standard Schema. |
| @tesseron/web | Browser SDK. |
| @tesseron/server | Node SDK. |
| @tesseron/mcp | MCP gateway server (CLI; bundled into the plugin). |
| @tesseron/react | React hooks adapter. |
| @tesseron/devtools | In-browser debug UI served by the MCP gateway (private stub, not yet published). |
| create-tesseron | npm create tesseron@latest scaffolder (private stub, not yet published). |
The Claude Code plugin lives at plugin/, exposed via the marketplace manifest at .claude-plugin/marketplace.json.
Tesseron's action context gives handlers four capabilities beyond plain tool invocation, each backed by an MCP primitive. Whether a given call actually fires depends on what the user's MCP client advertises:
| SDK surface | MCP primitive |
|---|---|
tool(...) (action invocation) |
tools |
resource(...) (live reads, subscriptions) |
resources (+ resources.subscribe) |
ctx.sample(...) |
sampling |
ctx.confirm(...) / ctx.elicit(...) |
elicitation |
ctx.progress(...) |
notifications/progress (client must pass _meta.progressToken on tools/call) |
For the authoritative, continuously-updated list of which client supports which primitive, see the official MCP client compatibility matrix — filter by Sampling or Elicitation to see how narrow the field still is. A few points worth knowing before you pick a capability:
SamplingNotAvailableError, ElicitationNotAvailableError) or collapses to the safe default (ctx.confirm returns false), so handlers can branch explicitly rather than silently misbehaving.v1.0 shipped April 2026. The protocol is stable at 1.0.0 and intentionally kept small: bidirectional JSON-RPC 2.0 over WebSocket, dynamic MCP tool registration, click-to-connect handshake, streaming progress, cancellation, sampling, confirmation, schema-validated elicitation, subscribable resources.
Published to npm (all at v1.0.1): @tesseron/core, @tesseron/web, @tesseron/server, @tesseron/react, @tesseron/mcp. The JS/TS SDKs are the reference implementation; the protocol spec is CC BY 4.0 so anyone can write a compatible client or server in any language.
On the roadmap: Svelte/Vue adapters, the devtools UI, a Streamable HTTP transport, a Python SDK, and bindings for desktop-native runtimes (Rust for Tauri, etc.).
pnpm install
pnpm typecheck
pnpm test # 65 tests across core + mcp
pnpm --filter @tesseron/mcp build:plugin # rebuild plugin/server/index.cjs after gateway changes
Bug reports, protocol refinements, new framework adapters, and improvements to the reference implementation are welcome.
Signed-off-by: under the Developer Certificate of Origin — use git commit -s.Reference implementation — Business Source License 1.1 (source-available). You may embed Tesseron in your own applications, use it internally, fork it, and redistribute it freely. You may not offer Tesseron or a substantial portion of it as a hosted or managed service to third parties. Each release auto-converts to Apache-2.0 four years after publication.
Protocol specification — CC BY 4.0. A compatible implementation in any language, for any purpose including commercial, is explicitly encouraged.
Contributions are welcome under the Developer Certificate of Origin — every commit must be Signed-off-by.
Built and maintained by BrainBlend AI.
© 2026 Kenny Vaneetvelde.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"tesseron": {
"command": "npx",
"args": []
}
}
}