MCP Catalogs
Home

everything vs penpot-mcp

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

everything
by modelcontextprotocol
penpot-mcp
by montevive
Stars★ 85,748★ 228
30d uses
Score7748
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptPython
Last committhis month7 mo ago

everything · Summary

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

penpot-mcp · Summary

Penpot MCP server integrates AI assistants like Claude with Penpot designs for automated design workflows and analysis.

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

penpot-mcp · Use cases

  • Automate design reviews and feedback collection with AI
  • Generate design system documentation and consistency checks
  • Streamline design-to-code workflows with AI assistance

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

penpot-mcp · Install

Installation

Prerequisites

  • Python 3.12+
  • Penpot account credentials

Install from PyPI

pip install penpot-mcp

Configuration

Create a .env file with your Penpot credentials:

PENPOT_API_URL=https://design.penpot.app/api
PENPOT_USERNAME=your_penpot_username
PENPOT_PASSWORD=your_penpot_password
PORT=5000
DEBUG=true

Claude Desktop Integration

Add to your Claude Desktop config file:

{
  "mcpServers": {
    "penpot": {
      "command": "uvx",
      "args": ["penpot-mcp"],
      "env": {
        "PENPOT_API_URL": "https://design.penpot.app/api",
        "PENPOT_USERNAME": "your_penpot_username",
        "PENPOT_PASSWORD": "your_penpot_password"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.