MCP Catalogs
Home

tesseron vs everything

Side-by-side comparison to help you pick between these two MCP servers.

tesseron
by BrainBlend-AI
everything
by modelcontextprotocol
Stars★ 17★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

tesseron · Summary

Tesseron is a TypeScript SDK that exposes typed web-app actions to MCP-compatible AI agents over WebSocket.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

tesseron · Use cases

  • Enabling AI agents to directly interact with live web applications and desktop apps
  • Providing typed interfaces for AI to perform complex actions within productivity tools
  • Creating seamless integration between AI assistants and existing applications without API keys

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

tesseron · Install

For Claude Code

/plugin marketplace add BrainBlend-AI/tesseron
/plugin install tesseron@tesseron

For Claude Desktop

Add to your config:

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

In Your App

npm install @tesseron/web
# or @tesseron/server, @tesseron/react, etc.

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.