MCP Catalogs
Home

visa-mcp vs everything

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

visa-mcp
by byigitt
everything
by modelcontextprotocol
Stars★ 9★ 85,748
30d uses
Score3877
Official
Categories
ProductivityCommunicationOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit11 mo agothis month

visa-mcp · Summary

MCP server for querying Schengen visa appointment status through multiple filter options.

everything · Summary

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

visa-mcp · Use cases

  • Travel agents checking visa appointment availability for clients
  • Individuals tracking Schengen visa application status
  • Consular staff monitoring visa appointment system availability

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

visa-mcp · Install

Installation

**NPM (recommended)**

npx -y visa-mcp --stdio

**Claude Desktop** Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "visa-mcp": {
      "command": "npx",
      "args": ["-y", "visa-mcp", "--stdio"]
    }
  }
}

**Cursor** Add to your ~/.cursor/mcp.json:

{
  "mcpServers": {
    "visa-mcp": {
      "command": "npx",
      "args": ["-y", "visa-mcp", "--stdio"]
    }
  }
}

**VS Code** Add to your VS Code MCP configuration:

"mcp": {
  "servers": {
    "visa-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "visa-mcp", "--stdio"]
    }
  }
}

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.