MCP Catalogs
Home

funpay-mcp vs everything

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

funpay-mcp
by DKeken
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3677
Official
Categories
E-commerceDeveloper ToolsWeb Scraping
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

funpay-mcp · Summary

MCP server for FunPay.com with profile management, lot operations, and batch cloning.

everything · Summary

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

funpay-mcp · Use cases

  • Batch clone listings across multiple FunPay subcategories with customized fields
  • Manage multiple FunPay seller profiles securely through OS keychain storage
  • Automate lot creation and updates for e-commerce operations on FunPay

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

funpay-mcp · Install

git clone https://github.com/DKeken/funpay-mcp.git
cd funpay-mcp
bun install

Register in Claude Code by editing ~/.claude.json:

{
  "mcpServers": {
    "funpay": {
      "type": "stdio",
      "command": "bun",
      "args": ["run", "/absolute/path/to/funpay-mcp/index.ts"],
      "env": {}
    }
  }
}

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.