MCP Catalogs
Home

mcp-jfrog vs everything

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

mcp-jfrog
by jfrog
everything
by modelcontextprotocol
Stars★ 118★ 85,748
30d uses
Score4477
Official
Categories
Developer ToolsOps & InfraSecurity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit3 mo agothis month

mcp-jfrog · Summary

Experimental MCP server for JFrog platform API providing repository management, build tracking, and security scanning capabilities.

everything · Summary

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

mcp-jfrog · Use cases

  • Automate repository management tasks in CI/CD pipelines
  • Monitor and analyze build artifacts for security vulnerabilities
  • Integrate JFrog platform capabilities with AI assistants

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

mcp-jfrog · Install

Installation

Via Smithery

npx -y @smithery/cli install @jfrog/mcp-jfrog --client claude

Manual Setup

  1. Install dependencies: npm install
  2. Configure environment variables:

- JFROG_ACCESS_TOKEN: Your JFrog access token - JFROG_URL: Base URL for your JFrog platform

  1. For Claude Desktop, add to claude_desktop_config.json:
{
  "mcpServers": {
    "jfrog": {
      "command": "node",
      "args": ["/path/to/mcp-jfrog/dist/index.js"],
      "env": {
        "JFROG_ACCESS_TOKEN": "your_token",
        "JFROG_URL": "https://your-jfrog-instance.com"
      }
    }
  }
}

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.