MCP Catalogs
Home

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
Score4977
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis 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

  1. Install globally:
npm install -g dataforseo-mcp-server
  1. Run directly:
npx dataforseo-mcp-server
  1. Set environment variables:
export DATAFORSEO_USERNAME=your_username
export DATAFORSEO_PASSWORD=your_password
  1. 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
Comparison generated from public README + GitHub signals. Last updated automatically.