EpicPxls
Server Details
Search and browse the EpicPxls design-asset marketplace — 65K+ UI kits, fonts, mockups, icons, and templates with commercial licenses and editable Figma/Sketch/PSD source files. Read-only, no auth: search items, get item details, list categories, fetch free assets, and extract color palettes.
- 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.2/5 across 6 of 6 tools scored.
All six tools have clearly distinct purposes: color palette extraction, free assets listing, item details, categories, free tools listing, and catalog search. No overlap or ambiguity.
All tool names follow a consistent snake_case verb_noun pattern (extract_palette, get_free_assets, get_item, list_categories, list_free_tools, search_items). Predictable and easy to parse.
Six tools is well-scoped for a design resource server. They cover browsing, searching, details, free assets, free tools, and a utility, without being overwhelming or sparse.
The tool surface covers core browsing, search, and detail retrieval. Minor gaps exist (e.g., no tool for filtering by category during search, or retrieving trending/popular items), but the set is functionally complete for most agent tasks.
Available Tools
6 toolsextract_paletteARead-onlyIdempotentInspect
Extract the dominant color palette (hex codes) from a PNG image URL. For JPEG/other formats use the web tool at https://www.epicpxls.com/tools/color-palette-extractor
| Name | Required | Description | Default |
|---|---|---|---|
| count | No | Number of colors to return (default 6, min 2, max 12) | |
| image_url | Yes | HTTPS URL of a PNG image (max 5 MB) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey read-only, idempotent, and non-destructive nature. The description adds that output is hex codes and restricts input to PNG, which is useful context beyond annotations.
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, no wasted words, front-loaded with the core purpose.
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?
Given no output schema, the description mentions hex codes as output. It covers input format and size limits implicitly via schema. Lacks details on error handling but is sufficient for a simple extraction tool with strong annotations.
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. Description does not add extra semantics beyond what the schema already provides for the two parameters.
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 extracts dominant colors as hex codes from a PNG URL, and distinguishes from sibling tools by specifying the input format and providing an alternative for other formats.
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?
Explicitly states when to use (PNG images) and when not to use (JPEG/other formats) along with a concrete alternative (web tool).
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_free_assetsARead-onlyIdempotentInspect
Get EpicPxls' most-downloaded FREE design assets (UI kits, fonts, mockups, icons, templates, illustrations) with direct download-page URLs. No account required.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum items to return (default 10, max 25) | |
| category | No | Category title filter (e.g. "UI Kits", "Fonts") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint true, so destructive behavior is clear. The description adds that no account is required, which is useful, but doesn't elaborate on other behavioral aspects like rate limits or default behavior.
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?
The description is a single, front-loaded sentence with no unnecessary words. Every part adds value: what tool does, what it returns, and a key condition.
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?
Despite lacking an output schema, the description covers the essential return information (download URLs) and all parameters are documented. It is complete enough for the tool's simplicity, though a brief note on the response structure would improve it.
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?
The input schema already has 100% coverage with descriptions for both parameters (limit and category). The description adds no additional parameter-level detail, so a baseline score of 3 is appropriate.
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 retrieves the most-downloaded free design assets with direct download URLs, specifying categories like UI kits and fonts. This distinguishes it from sibling tools such as search_items or get_item.
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 notes that no account is required, providing clear usage context. However, it does not contrast with alternatives or specify when not to use, so misses some guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_itemARead-onlyIdempotentInspect
Get full details for one EpicPxls item by slug, including price, license, preview images, and the URL to download or buy it.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | Item slug |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false, so safety is clear. The description adds value by detailing the return content (price, license, images, URL), which goes beyond annotations.
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?
A single, front-loaded sentence containing all essential information without any unnecessary words.
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 getter tool with good annotations, the description covers the main points: input (slug), output contents. Minor omission: no mention of error cases like non-existent slug.
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% and the only parameter 'slug' has a basic description. The tool description repeats 'by slug' without adding new semantics beyond the schema.
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 verb 'Get' and the resource 'full details for one EpicPxls item by slug', specifics including price, license, images, and URL. It distinguishes from sibling tools like list_categories or search_items.
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 implies usage for retrieving a single item by slug, but no explicit when-to-use or when-not-to-use guidance, nor mentions of alternatives among siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_categoriesARead-onlyIdempotentInspect
List all EpicPxls design-resource categories with item counts and browse URLs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint. The description adds that results include item counts and browse URLs, providing useful output context beyond structural safety.
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?
Single sentence, front-loaded with the key action and result. No waste.
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 parameterless list tool with good annotation coverage, the description is sufficient. It specifies the output content, though it misses potential details like sorting or filtering.
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?
No parameters exist, schema coverage is 100% vacuously. Baseline score of 4 is appropriate as no further parameter info is needed.
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 lists all categories with item counts and browse URLs, distinguishing it from siblings like search_items or get_item.
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?
No explicit guidance on when to use this tool versus alternatives. The description is self-contained but lacks comparison to siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_free_toolsARead-onlyIdempotentInspect
List EpicPxls' free browser-based design tools (image resizer, converter, compressor, color palette extractor, favicon generator, cake topper generator).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description states 'list', consistent with annotations (readOnlyHint true, idempotentHint true, destructiveHint false). It adds context about the specific tools included, which is helpful beyond annotations.
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?
Single sentence with examples, no unnecessary words. Front-loaded with purpose.
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?
Tool is simple with no parameters or output schema; description fully explains what it does and what the output contains. Complete for its complexity.
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?
There are no parameters, and the description adds meaning by listing example content, compensating for the empty schema. Baseline for 0 params is 4.
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 lists EpicPxls' free browser-based design tools, with specific examples (image resizer, converter, etc.), distinguishing it from siblings like extract_palette or get_free_assets.
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 implies when to use it (when needing a list of free tools), but does not explicitly state when not to use it or provide alternatives. However, the purpose is clear enough for correct usage.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_itemsARead-onlyIdempotentInspect
Search EpicPxls' catalog of 65,000+ design resources (UI kits, templates, icons, fonts, mockups, illustrations). Returns matching items with prices, free/paid status, and page URLs. All items include a commercial license; most include editable source files (Figma, Sketch, PSD).
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default 1) | |
| query | Yes | Search query | |
| category | No | Category title filter (e.g. "UI Kits", "Fonts") |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already provide readOnlyHint, idempotentHint, and destructiveHint. The description adds value by detailing return content (prices, free/paid status, page URLs) and mentioning commercial license and editable source files, which are not in annotations.
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?
The description is two sentences with zero waste. First sentence states purpose and scope, second adds licensing and file type details. Efficient and front-loaded.
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?
Despite no output schema, the description adequately explains what is returned (items with prices, status, URLs). Input schema is fully covered. For a search tool with 3 simple parameters, the description is complete.
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% as all parameters have descriptions. The description does not add further meaning beyond the schema; it focuses on return values rather than parameter details. Baseline of 3 is appropriate.
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?
Description clearly states the verb 'Search' and the resource 'EpicPxls catalog of 65,000+ design resources', listing specific types (UI kits, templates, etc.). It effectively distinguishes from siblings like get_free_assets (which is more specific) by indicating broad catalog search.
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 implies usage for general searching of design resources but does not explicitly state when to use this tool versus siblings like get_item or get_free_assets. No exclusions or alternatives mentioned, leaving the agent to infer.
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!