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 | — | — |
| Score | 33 | 77 |
| Official | — | ✓ |
| Categories | MediaSearchAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this 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