PlacePack
Server Details
Generate deterministic placeholder image URLs and packs for docs, staging, testing, and AI agents.
- 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 across 3 of 3 tools scored.
Each tool serves a unique function: generating a single image, generating multiple images as a pack, and listing available presets. There is no overlap in their purposes, making selection straightforward for an agent.
All tools follow a consistent verb_noun pattern: create_image, create_pack, list_presets. The server prefix 'placepack_' is uniformly applied, reinforcing predictability.
With exactly 3 tools, the set is well-scoped for a focused placeholder image service. Each tool addresses a distinct need without redundancy or unnecessary bloat.
The domain is fully covered: single generation, batch generation, and preset discovery. There are no obvious gaps since the service is stateless and generates URLs rather than managing persistent resources.
Available Tools
3 toolsplacepack_create_imageCreate a PlacePack image URLARead-onlyInspect
Validate one size spec and return an embeddable PlacePack image URL, filename, Markdown, and HTML.
| Name | Required | Description | Default |
|---|---|---|---|
| spec | Yes | Size spec such as 800x600.svg, hero:1600x900, or thumb:420x247@2x. | |
| format | No | ||
| bgColor | No | Background hex color, with or without #. | |
| padding | No | ||
| template | No | Label template. Tokens: {alias}, {w}, {h}, {ratio}, {index}, {bg}, {color}. | |
| textColor | No | Label hex color, with or without #. | |
| strokeWidth | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and openWorldHint=true, establishing the tool as a safe read operation. The description adds value by disclosing that it validates the size spec and returns specific outputs (URL, filename, Markdown, HTML), which is behavioral context beyond the annotations. No contradiction.
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, well-structured sentence that front-loads the action and output. Every word contributes meaning, with no redundancy or filler.
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 clearly enumerates the return artifacts (URL, filename, Markdown, HTML), which is a key completion aspect. It also mentions validation, covering the core behavior. However, it does not explain how the size spec syntax works beyond examples in the schema, and some parameter semantics are missing, leaving minor gaps.
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 description coverage is 57%, leaving some parameters (format, padding, strokeWidth) without descriptions. The tool description only mentions 'size spec' without elaborating on the parameters, so it does not compensate for the missing schema details. The schema itself covers some parameters adequately.
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's action: 'Validate one size spec and return an embeddable PlacePack image URL, filename, Markdown, and HTML.' It specifies the resource (image URL) and differentiates from siblings like placepack_create_pack and placepack_list_presets by focusing on generating a single URL with multiple output 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?
The description implies usage by mentioning validation and the returned artifacts, but it does not explicitly state when to use this tool versus alternatives or provide exclusion criteria. Since sibling tools exist, more direct guidance would be helpful, but the core use case is inferable from the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
placepack_create_packCreate a PlacePack image pack manifestARead-onlyInspect
Validate multiple size specs or one preset and return a manifest of generated PlacePack image URLs. Optionally inline a small SVG ZIP as base64.
| Name | Required | Description | Default |
|---|---|---|---|
| sizes | No | Newline-separated size specs. | |
| format | No | ||
| preset | No | Preset key such as og, developers, automation, or favicon. | |
| bgColor | No | Background hex color, with or without #. | |
| padding | No | ||
| template | No | Label template. Tokens: {alias}, {w}, {h}, {ratio}, {index}, {bg}, {color}. | |
| inlineZip | No | Return a base64 ZIP for SVG packs with at most 10 files. | |
| textColor | No | Label hex color, with or without #. | |
| strokeWidth | No |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare the tool read-only and open-world; the description adds behavioral detail about validation and returning a manifest, plus the optional base64 ZIP behavior. It does not contradict annotations, and the functional behavior is reasonably transparent, though it does not mention error handling on invalid specs.
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 with front-loaded purpose and no fluff. The description is extremely concise while covering the primary behavior and an optional feature.
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?
With 9 optional parameters and no output schema, the description covers the core return (manifest of URLs) and the optional ZIP, but it lacks guidance on when to use this tool versus siblings, how a preset interacts with sizes, and what happens on validation failure. The description is adequate but leaves meaningful gaps.
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 description coverage is 67%, so most parameters already have meaningful descriptions. The tool description does not add further parameter semantics beyond the schema—it just restates 'multiple size specs or one preset' and 'inline a small SVG ZIP', both already present in the schema descriptions. Score is baseline 3 for medium coverage.
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 uses a specific verb ('Validate ... and return') and identifies the exact resource (manifest of PlacePack image URLs). It clearly distinguishes this tool from siblings: placepack_create_image creates a single image, while placepack_list_presets lists presets.
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 by stating 'multiple size specs or one preset', but it does not explicitly contrast this with sibling tools or provide when-not/when-to-use guidance. It is unclear whether this should be preferred over create_image for any multi-size need.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
placepack_list_presetsList PlacePack presetsARead-onlyInspect
Return named PlacePack size presets with labels, specs, and default formats.
| 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=true, so the agent knows this is a safe read operation. The description adds value by specifying what data will be returned (presets with labels, specs, and default formats), which goes beyond the annotation alone. No side effects are mentioned, but the read-only annotation mitigates the need.
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, concise sentence that clearly states the tool's purpose and return contents without any filler. Every word contributes to understanding.
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 tool with no parameters and no output schema, the description adequately explains what is returned (labels, specs, default formats). It lacks explicit usage guidance, but for a simple list operation, this is largely sufficient. The read-only annotation and sibling context round out the picture.
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 tool has zero parameters, so the baseline is 4. The description appropriately focuses on the output rather than repeating parameter details, which is unnecessary here.
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 uses the specific verb 'Return' and clearly identifies the resource as 'PlacePack size presets', further detailing what is included (labels, specs, default formats). This distinguishes it from sibling create tools like placepack_create_image and placepack_create_pack.
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 this tool is for retrieving preset information when creating a pack or image, but it does not explicitly state when to use it versus the create tools. Since the siblings are all 'create' operations, the context implies a list-before-create flow, but this is not clearly articulated.
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
- AlicenseAqualityFmaintenanceThis server generates placeholder image URLs from various providers, supporting input validation and integration with desktop applications like Claude and Cursor.112MIT
- Flicense-qualityDmaintenanceGenerates customizable test/placeholder images as PNG files with specified dimensions (1-4096px), hex colors, and optional labels. Automatically creates directories and adds dimension overlays with smart contrast text.
- Alicense-qualityCmaintenanceEnables AI agents to create high-resolution marketing images from simple JSON configs without design skills or API keys. Provides presets, themes, and layouts to render deterministic PNGs locally.MIT
- Flicense-qualityDmaintenanceGenerates customizable placeholder images with configurable dimensions, colors, and text using HTML5 Canvas. Supports multiple formats (PNG/JPEG) with automatic text scaling and contrast detection.