klydo-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| KLYDO_DEBUG | No | Debug mode (set to false in production) | false |
| KLYDO_CACHE_TTL | No | Cache TTL in seconds | 3600 |
| KLYDO_KLYDO_API_TOKEN | Yes | API token for klydo.in (required) | |
| KLYDO_REQUEST_TIMEOUT | No | Request timeout in seconds | 30 |
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 | {
"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
| Name | Description |
|---|---|
| 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
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clear, distinct purpose: searching, getting trending products, and retrieving full product details. No overlap or ambiguity.
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.
Three tools is appropriate for a focused fashion product server: search, trending, and details. No unnecessary bloat or missing essentials.
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.