Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
KLYDO_DEBUGNoDebug mode (set to false in production)false
KLYDO_CACHE_TTLNoCache TTL in seconds3600
KLYDO_KLYDO_API_TOKENYesAPI token for klydo.in (required)
KLYDO_REQUEST_TIMEOUTNoRequest timeout in seconds30

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

CapabilityDetails
tools
{
  "listChanged": true
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{
  "tasks": {
    "list": {},
    "cancel": {},
    "requests": {
      "tools": {
        "call": {}
      },
      "prompts": {
        "get": {}
      },
      "resources": {
        "read": {}
      }
    }
  }
}

Tools

Functions exposed to the LLM to take actions

NameDescription
search_productsA

Search for fashion products on Klydo.

Args: query: Search terms (e.g., "black dress", "nike shoes", "cotton kurta") category: Filter by category (e.g., "dresses", "shoes", "tshirts", "kurtas") gender: Filter by gender ("men" or "women") min_price: Minimum price in INR (e.g., 500) max_price: Maximum price in INR (e.g., 2000) limit: Maximum number of results (default 10, max 50)

Returns: List of matching products. Each product has: - image_url: Direct CDN image link (always show this) - url: Buy link on klydo.in (may be null — only show when present) - price, brand, name, category

get_product_detailsA

Get complete product information including all images, sizes, and specifications.

Args: product_id: The product ID from search results (the 'id' field)

Returns: Full product details with: - images: ALL product images from multiple angles (show all to users) - image_url: Primary product image - url: Buy link on klydo.in (may be null — only show when present) - sizes, colors, description, specifications - Returns None if product not found.

get_trendingB

Get currently trending/popular fashion products.

Args: category: Optional category filter (e.g., "dresses", "shoes", "tshirts") limit: Maximum number of results (default 10, max 50)

Returns: List of trending products sorted by popularity. Each product has: - image_url: Direct CDN image link (always show this) - url: Buy link on klydo.in (may be null — only show when present) - price, brand, name, category

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.2/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clear, distinct purpose: searching, getting trending products, and retrieving full product details. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (get_product_details, get_trending, search_products), making it easy to predict tool function.

Tool Count5/5

Three tools is appropriate for a focused fashion product server: search, trending, and details. No unnecessary bloat or missing essentials.

Completeness4/5

The set covers core operations (search, browse trending, view details). Minor gap: no explicit way to list categories or brands, but search and trending cover most use cases.

Maintenance

ActivityInactive
ResponsivenessNo issues