mcp-server-typescript vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-typescript by dataforseo | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 198 | ★ 85,748 |
| 30d uses | — | — |
| Score | 49 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-typescript · Summary
A comprehensive MCP server for DataForSEO APIs that provides SEO data, keyword research, SERP tracking, and domain analytics.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server-typescript · Use cases
- SEO professionals can analyze SERP results and keyword data directly from AI assistants
- Content creators can discover keywords and analyze content sentiment
- Digital marketing agencies can monitor backlinks and domain analytics for multiple clients
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-server-typescript · Install
Installation
- Install globally:
npm install -g dataforseo-mcp-server- Run directly:
npx dataforseo-mcp-server- Set environment variables:
export DATAFORSEO_USERNAME=your_username
export DATAFORSEO_PASSWORD=your_password- For Claude Desktop, add to config.json:
{
"mcpServers": {
"DataForSEO": {
"command": "npx",
"args": ["dataforseo-mcp-server"]
}
}
}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