MCP Catalogs
Home

design-extract vs everything

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

design-extract
by Manavarya09
everything
by modelcontextprotocol
Stars★ 2,640★ 85,748
30d uses
Score5777
Official
Categories
Developer ToolsWeb ScrapingAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last committhis monththis month

design-extract · Summary

A comprehensive MCP server that extracts design systems from websites, generating tokens, components, and multi-platform outputs.

everything · Summary

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

design-extract · Use cases

  • Extract and analyze design systems from existing websites for implementation in new projects
  • Audit websites for design consistency, accessibility, and best practices
  • Generate cross-platform design tokens and component implementations (iOS, Android, web)
  • Compare design systems between multiple websites for brand consistency

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

design-extract · Install

# Install globally
npm i -g designlang

# Or as an agent skill
npx skills add Manavarya09/design-extract

# Run MCP server directly
designlang mcp

For Claude Desktop integration, add to Claude Desktop config:

{
  "mcpServers": {
    "design-extract": {
      "command": "npx",
      "args": ["designlang", "mcp"]
    }
  }
}

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.