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
TDQS
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 |
TDQS
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 |
TDQS
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 | |||
TDQS
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.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- First observed
placepack_create_image - First observed
placepack_create_pack - First observed
placepack_list_presets
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
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
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
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 Connectors
Deterministic image rendering for agents: JSON template in, on-brand PNG out.
Deterministic procedural SVG/PNG backgrounds: 58 generators, curated palettes, brand kits.
Diagrams, badges, charts and QR codes as plain image URLs you can paste into Markdown.
Generate branded images at scale: design templates and render them to PNGs by prompt.
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
- FlicenseNot gradedqualityDmaintenanceGenerates 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.-
- AlicenseNot gradedqualityAmaintenanceEnables AI agents to perform deterministic, non-generative image transformations—straightening, cropping, masking, layering, color adjustments, and encoding—as reproducible recipes while preserving immutable originals.MIT
- AlicenseNot gradedqualityCmaintenanceEnables 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