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 | — | — |
| Score | 77 | 38 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | SecurityDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 14 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-everythingasterisk-mcp-server · Install
Installation
- Install Python 3.10+
- Install using pipx or uvx:
``bash pipx install asterisk-mcp-server # or uvx install asterisk-mcp-server ``
- 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 } } } ``