Skip to main content
Glama

Server Details

UI design that stands out. Full-screen UI references and design materials for coding agents.

Glama couldn't complete the latest health check. If this server requires authentication, missing or expired test credentials may be the cause. A test profile lets Glama authenticate for health checks and discover tools; it is separate from your personal connections.

If you are the author, claim ownership, then add or update a test profile under Admin → Test Profile.

Status
Unhealthy
Uptime
4.1% over 41 days
OAuth
Works in Glama
Last Tested
Transport
Streamable HTTP
URL
Repository
uizze/uizze
GitHub Stars
0
Server Listing
UIZZE

TDQS

A4.4/5.0

Scored across 1 tool

Disambiguation5/5

Only one tool exists, so there is no possibility of confusion. The tool's purpose is clearly specified.

Naming Consistency5/5

The name 'check_ui_slop' follows a clear verb_noun pattern, is descriptive, and there are no other names to conflict.

Tool Count3/5

One tool is borderline thin for a server named UIZZE, which implies a broader UI toolkit. However, the tool is highly specialized, so the count is acceptable but not robust.

Completeness3/5

The tool covers specific source-level risks but explicitly excludes visual and taste dimensions, leaving notable gaps in the UI slop domain. A more complete surface would include additional UI quality checks.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool update
    • Changedcheck_ui_slop11 fields changed
      • addedInput schema / additionalProperties
        Added value: +false
      • addedInput schema / properties / css
        Added value: +{
        +  "description": "CSS source to check.",
        +  "maxLength": 150000,
        +  "type": "string"
        +}
      • removedInput schema / properties / designSystemNotes
        Removed value: -{
        -  "description": "Short notes about the product design system and constraints.",
        -  "maxLength": 1000,
        -  "type": "string"
        -}
      • removedInput schema / properties / implementationCss
        Removed value: -{
        -  "description": "CSS or class-heavy source excerpt. Provide this or implementationHtml.",
        -  "maxLength": 30000,
        -  "type": "string"
        -}
      • removedInput schema / properties / implementationHtml
        Removed value: -{
        -  "description": "Rendered HTML or component markup. Provide this or implementationCss.",
        -  "maxLength": 30000,
        -  "type": "string"
        -}
      • addedInput schema / properties / markup
        Added value: +{
        +  "description": "Rendered HTML or JSX source to check.",
        +  "maxLength": 150000,
        +  "type": "string"
        +}
      • removedInput schema / properties / platform
        Removed value: -{
        -  "description": "Optional target platform.",
        -  "enum": [
        -    "ios",
        -    "web"
        -  ],
        -  "type": "string"
        -}
      • removedInput schema / properties / requiredStates
        Removed value: -{
        -  "description": "Relevant states the implementation must cover.",
        -  "items": {
        -    "maxLength": 60,
        -    "minLength": 1,
        -    "type": "string"
        -  },
        -  "maxItems": 12,
        -  "type": "array"
        -}
      • removedInput schema / properties / task
        Removed value: -{
        -  "description": "What the interface is supposed to help the user accomplish.",
        -  "maxLength": 300,
        -  "minLength": 1,
        -  "type": "string"
        -}
      • removedInput schema / required
        Removed value: -[
        -  "task"
        -]
      • changedOutput schema / (root)
        Previous value: -nullNew value: +{
        +  "$schema": "http://json-schema.org/draft-07/schema#",
        +  "additionalProperties": false,
        +  "properties": {
        +    "checks": {
        +      "additionalProperties": false,
        +      "properties": {
        +        "deterministic": {
        +          "enum": [
        +            "passed",
        +            "issues"
        +          ],
        +          "type": "string"
        +        },
        +        "visual": {
        +          "const": "not_run",
        +          "type": "string"
        +        }
        +      },
        +      "required": [
        +        "deterministic",
        +        "visual"
        +      ],
        +      "type": "object"
        +    },
        +    "findings": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "category": {
        +            "enum": [
        +              "layout",
        +              "responsive",
        +              "interaction",
        +              "state",
        +              "accessibility",
        +              "runtime",
        +              "hierarchy",
        +              "genericity",
        +              "design_system",
        +              "privacy"
        +            ],
        +            "type": "string"
        +          },
        +          "confidence": {
        +            "enum": [
        +              "high",
        +              "medium",
        +              "low"
        +            ],
        +            "type": "string"
        +          },
        +          "evidence": {
        +            "maxLength": 500,
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "fix": {
        +            "maxLength": 500,
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "id": {
        +            "pattern": "^finding_[a-f0-9]{20}$",
        +            "type": "string"
        +          },
        +          "region": {
        +            "additionalProperties": false,
        +            "properties": {
        +              "height": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "width": {
        +                "exclusiveMinimum": 0,
        +                "type": "number"
        +              },
        +              "x": {
        +                "minimum": 0,
        +                "type": "number"
        +              },
        +              "y": {
        +                "minimum": 0,
        +                "type": "number"
        +              }
        +            },
        +            "required": [
        +              "x",
        +              "y",
        +              "width",
        +              "height"
        +            ],
        +            "type": "object"
        +          },
        +          "selector": {
        +            "maxLength": 500,
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "severity": {
        +            "enum": [
        +              "blocker",
        +              "major",
        +              "minor",
        +              "note"
        +            ],
        +            "type": "string"
        +          },
        +          "source": {
        +            "enum": [
        +              "visual",
        +              "deterministic",
        +              "runtime"
        +            ],
        +            "type": "string"
        +          },
        +          "userImpact": {
        +            "maxLength": 500,
        +            "minLength": 1,
        +            "type": "string"
        +          },
        +          "view": {
        +            "maxLength": 120,
        +            "minLength": 1,
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "severity",
        +          "category",
        +          "view",
        +          "evidence",
        +          "userImpact",
        +          "fix",
        +          "confidence",
        +          "source"
        +        ],
        +        "type": "object"
        +      },
        +      "maxItems": 3,
        +      "type": "array"
        +    },
        +    "kind": {
        +      "const": "ui_slop_check",
        +      "type": "string"
        +    },
        +    "limitations": {
        +      "items": {
        +        "maxLength": 300,
        +        "minLength": 1,
        +        "type": "string"
        +      },
        +      "maxItems": 3,
        +      "type": "array"
        +    },
        +    "schemaVersion": {
        +      "const": "uizze.mcp.preview.v1",
        +      "type": "string"
        +    },
        +    "summary": {
        +      "maxLength": 240,
        +      "minLength": 1,
        +      "type": "string"
        +    },
        +    "verdict": {
        +      "enum": [
        +        "pass",
        +        "needs_fixes"
        +      ],
        +      "type": "string"
        +    }
        +  },
        +  "required": [
        +    "schemaVersion",
        +    "kind",
        +    "summary",
        +    "verdict",
        +    "checks",
        +    "findings",
        +    "limitations"
        +  ],
        +  "type": "object"
        +}
  2. 1 tool update
    • Changedcheck_ui_slop1 field changed
      • changedInput schema / properties / platform / description
        Previous value: -"Target platform."New value: +"Optional target platform."
  3. 1 tool update
    • First observedcheck_ui_slop

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    🎨 AI-powered UI/UX design intelligence - 1519+ curated design resources through MCP | React, Vue, Next.js, Flutter & more
    7
    83 npm
    34
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Structured design references from 1,000+ curated websites for AI-powered web design. Retrieve real CSS values, typography specs, color palettes, and design rationale via MCP.
    1
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Provides curated real website design references with structured JSON data on type, spacing, palette, and layout. Enables AI agents to search, browse, and analyze over 1,000 sites and their sections.
    1
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.