MCP Catalogs
Home

Genexus18MCP vs everything

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

Genexus18MCP
by lennix1337
everything
by modelcontextprotocol
Stars★ 16★ 85,748
30d uses
Score4277
Official
Categories
Developer ToolsAI / LLM ToolsKnowledge Graph
Developer ToolsAI / LLM ToolsOther
LanguageC#TypeScript
Last committhis monththis month

Genexus18MCP · Summary

GeneXus 18 MCP server enabling AI agents to read, edit, and analyze KB objects via Model Context Protocol.

everything · Summary

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

Genexus18MCP · Use cases

  • AI assistant analyzing and refactoring existing GeneXus application code
  • Automated documentation generation for GeneXus knowledge bases
  • Batch operations across multiple GeneXus objects through AI agent commands

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

Genexus18MCP · Install

Installation

  1. Run the installer: npx genexus-mcp@latest init --kb "C:\KBs\YourKB" --gx "C:\Program Files (x86)\GeneXus\GeneXus18"
  2. Register the MCP in your AI client (auto-detected for Claude Desktop, Claude Code, Cursor, and Antigravity)
  3. Restart your AI client and test with prompts like "list all transactions in my KB"

For Claude Desktop, the configuration will be auto-added to claude_desktop_config.json

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.