MCP Catalogs
Home

japan-ani-search-mcp vs everything

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

japan-ani-search-mcp
by hirofumitorato
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3377
Official
Categories
MediaSearchAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit2 mo agothis month

japan-ani-search-mcp · Summary

MCP server for searching anime and manga using AniList API with tools for character details and cultural explanations.

everything · Summary

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

japan-ani-search-mcp · Use cases

  • Find specific anime or manga by title
  • Get detailed information about characters
  • Learn about Japanese cultural terms and concepts in anime

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

japan-ani-search-mcp · Install

Installation

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "anisearch": {
      "command": "npx",
      "args": ["-y", "japan-ani-search-mcp"]
    }
  }
}

Restart Claude Desktop after making these changes.

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.