MCP Catalogs
Home

everything vs framesmith

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

everything
by modelcontextprotocol
framesmith
by RobDavenport
Stars★ 85,748★ 1
30d uses
Score7734
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsMedia
LanguageTypeScriptRust
Last committhis month3 mo ago

everything · Summary

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

framesmith · Summary

Fighting game character editor with MCP server for LLM-assisted workflows

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

framesmith · Use cases

  • LLM-assisted fighting game character creation and balancing
  • Automated character data validation and optimization
  • Integration with fighting game development pipelines via 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

framesmith · Install

Install Framesmith:

npm install
npm run tauri dev

Start the MCP server:

cd src-tauri
cargo run --bin mcp -- --characters-dir ../characters

For Claude Desktop integration, add to claude_desktop_config.json:

{
  "mcpServers": {
    "framesmith": {
      "command": "cargo",
      "args": ["run", "--bin", "mcp", "--", "--characters-dir", "../characters"],
      "cwd": "${your_framesmith_project}/src-tauri"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.