MCP Catalogs
Home

Glama-MCP-Server-Search vs everything

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

Glama-MCP-Server-Search
by kongyo2
everything
by modelcontextprotocol
Stars★ 2★ 85,748
30d uses
Score3277
Official
Categories
SearchDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

Glama-MCP-Server-Search · Summary

An MCP server for searching and exploring MCP servers from the Glama directory.

everything · Summary

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

Glama-MCP-Server-Search · Use cases

  • Help developers discover relevant MCP servers for their projects
  • Integrate server search functionality into AI applications
  • Monitor and analyze trends in MCP server development
  • Create automated workflows that interact with MCP directory data

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

Glama-MCP-Server-Search · Install

npm install @kongyo2/glama-mcp-server-search

Start the server:

npm run start

For development mode:

npm run dev

For Claude Desktop, add this to your config.json:

{
  "mcpServers": {
    "glama-search": {
      "command": "node",
      "args": ["dist/index.js"]
    }
  }
}

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.