pixdress — KI-Mode zum Selbermachen
Server Details
Search AI-designed print-on-demand clothing, or have a new motif invented from one sentence.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.5/5 across 3 of 3 tools scored.
Each tool serves a distinct function: design_link initiates a new custom design, search_designs finds existing published designs, and get_design retrieves detailed information for a specific design. There is no overlapping purpose, and their relationships are clearly defined (search returns IDs that get_design consumes).
Two tools follow a consistent verb_noun pattern (get_design, search_designs), but design_link breaks this pattern as it reads as a noun phrase rather than a verb-driven action. The style is readable but not uniformly consistent.
With 3 tools, the server is at the low end of the typical well-scoped range. Each tool earns its place, covering search, detail retrieval, and creation initiation. The count feels appropriately minimal for the narrow purpose.
The tool set covers the core lifecycle: discover existing designs (search), inspect details (get), and create new ones (design_link). Minor gaps exist such as no explicit update/delete for designs, but these are not expected in this service-oriented context. The order URL in get_design and the handoff to the human in design_link address the remaining steps.
Available Tools
3 toolsdesign_linkBuild a link that creates a NEW designAInspect
pixdress can invent a motif that does not exist yet. This tool does NOT generate anything — it returns a URL. Hand that URL to the human: opening it starts the studio, generates the motif from their sentence and shows a preview within seconds. Size choice, legal notices and payment stay with the person who will wear the garment. Free of charge.
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | The motif in plain language, German or English. Example: 'Ein Fuchs im Herbstwald'. | |
| product | No | Garment. Default hoodie. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description fully discloses behavior: it returns a URL, opening it starts the studio, generates from the user's sentence, shows a preview, and is free. It clearly states it does not generate anything itself, preventing misuse, and no contradictions exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four sentences, each serving a distinct purpose: context, explicit limitation, workflow, and scope/responsibility. Front-loaded with the key action ('returns a URL') and no redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple, and the description covers purpose, workflow, and what the agent should do with the URL. It also clarifies cost and human responsibilities, making it complete even without an output schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description only indirectly references the prompt via 'their sentence' and adds no new meaning to the product parameter beyond the schema's enum. It does not explain parameter values or constraints.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool returns a URL rather than generating a design, using specific verb 'returns a URL' and contrast 'does NOT generate anything.' It distinguishes from siblings (get_design, search_designs) by emphasizing 'NEW design' and 'invent a motif that does not exist yet.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It explicitly says 'Hand that URL to the human' and 'Size choice, legal notices and payment stay with the person,' providing direct when-to-use and when-not-to-use guidance. It also contrasts with sibling tools by noting it does not generate, making intended usage clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_designGet one design in fullAInspect
Full details for one design: price, available sizes, shipping cost, delivery time, return policy and the order URL. Takes the id from search_designs.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Design id, e.g. '4ddb7882'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden of disclosing behavior. It lists the return fields (price, sizes, shipping, delivery, return policy, order URL), giving a clear expectation of what the tool returns. Does not mention error behavior or side effects, but as a simple get, this is reasonable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, front-loaded with 'Full details for one design' and a concise list of contained fields. No fluff, every word is useful.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple get tool with one parameter and no output schema, the description provides the key return fields and the source of the required id. This is complete enough for an agent to select and invoke the tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema already describes the id parameter fully with an example (100% coverage). The description adds extra context by explaining where the id comes from ('Takes the id from search_designs'), which helps the agent correctly populate the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it retrieves full details for one design, listing specific fields (price, sizes, shipping, etc.). This distinguishes it from siblings: search_designs returns search results and design_link likely provides only a link.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides usage context by stating 'Takes the id from search_designs', indicating it should be used after searching and that the id comes from that sibling tool. Does not explicitly mention when not to use, but the workflow is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_designsSearch the pixdress catalogueAInspect
Search published clothing designs by keyword (German or English). Returns title, price, product type and the product URL for each hit. Use this FIRST — an existing design ships immediately and costs the customer nothing extra.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results (1-25, default 10). | |
| query | Yes | Search term, e.g. 'Wolf', 'Rosen', 'anime fox'. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description is the only source of behavior. It discloses that search is by keyword and returns title, price, product type, and URL, but does not mention side effects, sorting, pagination, or error behavior beyond the schema's limit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each with a distinct purpose (function, return fields, usage priority). No filler or repetition of schema content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Without an output schema, the description covers the key return fields and gives usage context. It lacks details on ordering and does not reference sibling tools for when to use alternatives, but the tool is simple enough that the description is largely sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3. The description adds the explicit constraint that query can be in German or English, which complements the schema's examples and helps an agent construct valid queries.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states 'Search published clothing designs by keyword (German or English)' with a specific verb and resource. It also enumerates returned fields, clearly distinguishing this catalogue-wide search from the sibling tools design_link and get_design.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly instructs 'Use this FIRST' and gives a concrete reason: an existing design ships immediately and costs nothing extra. It does not name exclusions or alternative tools, so it lacks a when-not-to-use statement.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityAmaintenanceAI image and video generation, editing, and region repair via Gemini, OpenAI, and GrokLast updated11425MIT
- FlicenseAqualityDmaintenanceEnables AI assistants to browse, search, and purchase limited-edition fashion from Kenya, with tools for product details, stock checks, styling advice, and cart link generation.Last updated10
- FlicenseAqualityFmaintenanceAI image generation from text prompts via x402 micropayments on Base. $0.10 USDC per image, paid automatically from your wallet. No API key required.Last updated1
- Alicense-qualityBmaintenanceGenerate and refine AI images/audio/video through natural conversation.Last updated396Apache 2.0