MCP Catalogs
Home

everything vs asterisk-mcp-server

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

everything
by modelcontextprotocol
asterisk-mcp-server
by winfunc
Stars★ 85,748★ 33
30d uses
Score7738
Official
Categories
Developer ToolsAI / LLM ToolsOther
SecurityDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis month14 mo ago

everything · Summary

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

asterisk-mcp-server · Summary

Asterisk MCP server provides security scanning tools for code snippets and codebases via the Asterisk API.

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

asterisk-mcp-server · Use cases

  • Security scanning of code snippets in AI assistants
  • Full codebase vulnerability analysis
  • Verifying security impact of code changes during development

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

asterisk-mcp-server · Install

Installation

  1. Install Python 3.10+
  2. Install using pipx or uvx:

``bash pipx install asterisk-mcp-server # or uvx install asterisk-mcp-server ``

  1. Configure in your AI assistant (example for Claude Desktop):

``json { "mcpServers": { "asterisk-mcp": { "command": "pipx", "args": [ "run", "asterisk-mcp-server", "--api-url", "https://api.mcp.asterisk.so", "--transport", "stdio", "--key", "YOUR_API_KEY" ], "timeout": 3600 } } } ``

Comparison generated from public README + GitHub signals. Last updated automatically.