kiyas
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| compareA | Compare a design against a rendered implementation and return discrepancies (measured on kiyas's golden eval set: 90% mutation recall, zero false positives on identical pairs). Provide |
| get_diff_reportA | Fetch a stored kiyas report by reportId. Defaults to JSON; pass format=html to fetch the rendered report. Returns the artifact path and (by default for JSON) inline content. |
| list_issuesA | List discrepancies from a stored kiyas report by reportId, optionally filtered by severity (all | high | medium | low). |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
The three tools are clearly distinct: 'compare' creates a new comparison and returns a reportId, 'get_diff_report' retrieves a stored report, and 'list_issues' lists discrepancies from a report. No functional overlap exists.
All tool names follow the verb_noun pattern: 'compare', 'get_diff_report', 'list_issues'. The pattern is consistent across the server.
With 3 tools, the server is well-scoped for its purpose of comparing designs and implementations. Each tool serves a necessary step in the workflow without redundancy.
The tool set covers the complete lifecycle: creating a comparison, retrieving the full report, and listing filtered issues. No obvious gaps for the domain.