everything vs penpot-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | penpot-mcp-server by zcube | |
|---|---|---|
| Stars | ★ 85,748 | ★ 16 |
| 30d uses | — | — |
| Score | 77 | 39 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 6 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
penpot-mcp-server · Summary
Penpot MCP server connects AI assistants to Penpot design platform with comprehensive design manipulation capabilities.
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-server · Use cases
- AI design assistants creating wireframes and mockups based on natural language descriptions
- Automated design systems maintenance through component updates across multiple files
- Design collaboration with AI-powered commenting and feedback integration
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-everythingpenpot-mcp-server · Install
# Install globally
npm install -g @zcubekr/penpot-mcp-server
# Run the server
penpot-mcp-serverWith Claude Desktop:
{
"mcpServers": {
"penpot": {
"command": "node",
"args": ["/path/to/penpot-mcp-server/dist/index.js"],
"env": {
"PENPOT_API_URL": "https://design.penpot.app",
"PENPOT_ACCESS_TOKEN": "your-access-token"
}
}
}
}Environment variables required:
PENPOT_API_URL: Your Penpot instance URLPENPOT_ACCESS_TOKEN: Your Penpot access token