MCP Catalogs
Home

hyperterse vs everything

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

hyperterse
by hyperterse
everything
by modelcontextprotocol
Stars★ 82★ 85,748
30d uses
Score4677
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
Developer ToolsAI / LLM ToolsOther
LanguageGoTypeScript
Last commit1 mo agothis month

hyperterse · Summary

Agentic server framework that combines MCP tools, prompts, resources, and agents in a single deployable service with Go.

everything · Summary

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

hyperterse · Use cases

  • Building MCP tools with database queries
  • Creating agentic services with both MCP and A2A protocols
  • Developing multi-agent systems with shared tools and resources

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

hyperterse · Install

Install Hyperterse

curl -fsSL https://hyperterse.com/install | bash

Initialize a new project

hyperterse init

Start the server

hyperterse start

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "hyperterse": {
      "command": "hyperterse",
      "args": ["serve"]
    }
  }
}

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.