mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp by local-falcon | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 19 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsMonitoring | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp · Summary
A TypeScript MCP server for Local Falcon's SEO platform with 37 tools for local search tracking and competitor analysis.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp · Use cases
- Local SEO agencies tracking rankings across multiple locations
- Businesses monitoring competitor visibility in specific geographic areas
- AI assistants providing automated local search insights and reports
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
mcp · Install
Installation
Via Remote (HTTP)
{
"mcpServers": {
"local-falcon-mcp": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.localfalcon.com/mcp?local_falcon_api_key=INSERT_YOUR_API_KEY_HERE"
]
}
}
}Via STDIO
mkdir lf-mcp
cd lf-mcp
npm i @local-falcon/mcpClaude Desktop Configuration
{
"mcpServers": {
"local-falcon-mcp": {
"command": "node",
"args": ["/path/to/lf-mcp/node_modules/@local-falcon/mcp/dist/index.js"],
"env": {
"LOCAL_FALCON_API_KEY": "INSERT_YOUR_API_KEY_HERE"
}
}
}
}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