Tesseron

v2.9.0Browser Automationstable

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.

ai-agentsclaude-codemcpmodel-context-protocolsdk
Share:
18
Stars
0
Downloads
0
Weekly
0/5

What is Tesseron?

Tesseron is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to 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.

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.

This server falls under the Browser Automation category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • Enables MCP-compatible AI agents to execute typed live-app a

Use Cases

Execute typed live-app actions through WebSocket connections for agents. Interact directly with application state without browser automation. Enable agents to manipulate real application interfaces.
BrainBlend-AI

Maintainer

LicenseNOASSERTION
Languagetypescript
Versionv2.9.0
UpdatedMay 21, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

NPM

npx -y @tesseron/mcp

Manual Installation

npx -y @tesseron/mcp

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Tesseron

Tesseron is an MCP gateway that lets AI agents execute typed, schema-validated actions directly against live application state over WebSocket — without browser automation, DOM scraping, or screenshot analysis. A Tesseron-aware app (browser or Node.js) opens a loopback WebSocket and registers its actions using the Tesseron SDK; the MCP gateway discovers them and bridges them to any MCP client such as Claude Code or Cursor. This means agents can add a todo, submit a form, or trigger any custom app action with real-time feedback and type safety, using framework SDKs for React, Svelte, Vue, vanilla JavaScript, and Node.js.

Prerequisites

  • Node.js 18 or higher
  • An application instrumented with the Tesseron SDK (@tesseron/web, @tesseron/server, or a framework adapter)
  • Claude Code, Cursor, or another MCP-compatible client
  • npx available for running @tesseron/mcp without a global install
1

Install the Tesseron SDK in your application

Add the appropriate Tesseron SDK package to your app — @tesseron/web for browser apps, @tesseron/server for Node.js, or a framework adapter for React, Svelte, or Vue.

npm install @tesseron/web
# Or for Node.js backend:
npm install @tesseron/server
# Framework adapters:
npm install @tesseron/react
npm install @tesseron/svelte
npm install @tesseron/vue
2

Instrument your application with Tesseron actions

Register your app and define typed actions using Zod schema validation. Call tesseron.connect() to open the WebSocket connection to the MCP gateway.

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: Date.now(), text, done: false });
    render();
    return { ok: true };
  });

await tesseron.connect();
3

Add @tesseron/mcp to your MCP client configuration

Register the Tesseron MCP gateway with your Claude Code or other MCP client. The gateway discovers your running app via the local instances directory.

{
  "mcpServers": {
    "tesseron": {
      "command": "npx",
      "args": ["-y", "@tesseron/[email protected]"]
    }
  }
}
4

Start your app and verify the connection

Run your instrumented application so the WebSocket is active. The Tesseron gateway will detect it via ~/.tesseron/instances/ and bridge it to the MCP client.

# Start your app (e.g., open in browser or run Node.js server)
# Then in Claude, ask:
# "List the available Tesseron actions for the running app"

Tesseron Examples

Client configuration

Claude Code .mcp.json configuration to run the Tesseron MCP gateway via npx.

{
  "mcpServers": {
    "tesseron": {
      "command": "npx",
      "args": ["-y", "@tesseron/[email protected]"]
    }
  }
}

Prompts to try

Use these prompts in Claude Code after the Tesseron gateway is running and your app is instrumented.

- "List all available actions in the connected Tesseron app"
- "Add a new todo item with the text 'Review Tesseron integration' using the addTodo action"
- "Mark todo item ID 3 as complete using the Tesseron app's toggleDone action"
- "Submit the checkout form in the connected app with these values: name='Alice', email='[email protected]'"
- "Ask the app to navigate to the settings page using the navigateTo action"

Troubleshooting Tesseron

The MCP gateway does not discover the running app

Tesseron discovers apps via the local file ~/.tesseron/instances/. Ensure your app called tesseron.connect() successfully — check the browser console or Node.js logs for connection errors. The app and MCP gateway must run on the same machine.

Actions fail schema validation

Ensure the input passed to an action matches the Zod schema defined in your app. Ask Claude to show you the action's input schema before invoking it, and adjust the arguments accordingly.

ctx.sample or ctx.confirm capabilities are unsupported

Sampling and elicitation capabilities are not universally supported across MCP clients. The core tool invocation capability works everywhere. Check your client's MCP capability documentation; Claude Code's support varies by version.

Frequently Asked Questions about Tesseron

What is Tesseron?

Tesseron is a Model Context Protocol (MCP) server that 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. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Tesseron?

Install via npm with the command: npx -y @tesseron/mcp. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).

Which AI clients work with Tesseron?

Tesseron works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Tesseron free to use?

Yes, Tesseron is open source and available under the NOASSERTION license. You can use it freely in both personal and commercial projects.

Browse More Browser Automation MCP Servers

Explore all browser automation servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "tesseron": { "command": "npx", "args": ["-y", "@tesseron/mcp"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Tesseron?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides