MCP Catalogs
Home

pyxel-mcp vs everything

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

pyxel-mcp
by kitao
everything
by modelcontextprotocol
Stars★ 17★ 85,748
30d uses
Score4377
Official
Categories
Developer ToolsAI / LLM ToolsMedia
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

pyxel-mcp · Summary

MCP server for AI-assisted retro game development with Pyxel, offering tools to run, capture, and analyze games.

everything · Summary

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

pyxel-mcp · Use cases

  • AI-assisted retro game development with automated testing and iteration
  • Automated sprite and animation analysis for game design optimization
  • Visual debugging of game states and pixel-level differences

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

pyxel-mcp · Install

Installation

  1. Install the package:
pip install pyxel-mcp
  1. Register pyxel-mcp as an MCP server in your AI agent. For Claude Code, add to your project's .mcp.json:
{
  "mcpServers": {
    "pyxel": {
      "type": "stdio",
      "command": "pyxel-mcp"
    }
  }
}

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.