Skip to main content
Glama

Server Details

Focused full-screen UI references and hosted design materials for coding agents.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Unhealthy
OAuth
Works in Glama
Last Tested
Transport
Streamable HTTP
URL
Repository
uizze/uizze
GitHub Stars
0
Server Listing
UIZZE

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  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

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to create and manage consistent multi-screen UI designs through a token-efficient MCP interface, with design system tokens, components, flows, and visual review.
    277
    AGPL 3.0
  • A
    license
    A
    quality
    C
    maintenance
    Turns AI coding hosts into a guided mobile-UI design tool with design interviews, token contracts, linters, and local browser preview.
    8
    14
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
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.