MCP Catalogs
Home

my-monkey-app vs everything

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

my-monkey-app
by KardelRuveyda
everything
by modelcontextprotocol
Stars★ 1★ 85,748
30d uses
Score3177
Official
Categories
AI / LLM ToolsDeveloper ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last commit10 mo agothis month

my-monkey-app · Summary

Interactive console app displaying monkey information with MCP server integration.

everything · Summary

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

my-monkey-app · Use cases

  • Educational tool for learning about monkey species and their conservation status
  • Example of MCP integration with a console application
  • Demonstration of GitHub Copilot Agent Mode for AI-assisted development

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

my-monkey-app · Install

  1. Clone the repository: git clone https://github.com/KardelRuveyda/MyMonkeyApp.git
  2. Navigate to the project directory: cd MyMonkeyApp
  3. Install .NET 9.0 SDK
  4. Build and run the application: dotnet run

For MCP integration with Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "monkeymcp": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "jamesmontemagno/monkeymcp"]
    }
  }
}

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.