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 | — | — |
| Score | 31 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | C# | TypeScript |
| Last commit | 10 mo ago | this 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
- Clone the repository:
git clone https://github.com/KardelRuveyda/MyMonkeyApp.git - Navigate to the project directory:
cd MyMonkeyApp - Install .NET 9.0 SDK
- 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