Skip to main content
Glama

Space Monkey Mailchimp Dashboard MCP

Render prompt workflow

sm_get_prompt
Read-onlyIdempotent

Render one Space Monkey prompt workflow with concrete argument values, returning the complete instruction text ready to follow, plus the effective arguments that were bound (provided values plus defaults for omitted optionals). Prompt names and their arguments come from sm_list_prompts. If the rendered text still contains {{tokens}} such as {{projectId}} or {{company}}, a required argument was not provided; call again with it filled. The rendered text references sm_ tools by name; call them as instructed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesPrompt name from sm_list_prompts, e.g. sm_brief_before_call.
argumentsNoArgument values for the prompt, keyed by argument name (e.g. {"company": "Conversion Sciences", "email": "brian@example.com"}). Omit optional arguments to use their defaults. Multi-line values are supported.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and non-destructive behavior, so the bar for added value is met comfortably: the description reveals the failure mode (unresolved {{tokens}} signal a missing required argument), the default-binding semantics for effective arguments, and the downstream action of calling referenced sm_ tools. This is substantive behavior beyond what annotations convey.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four sentences with no filler: purpose and return value are front-loaded, followed by input source, failure mode, and follow-up action. Every sentence earns its place and each conveys a distinct piece of information an agent needs.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

With no output schema, the description carries the burden of explaining return values, and it does so thoroughly: instruction text, effective arguments with defaults, unresolved-token error signal, and the expected follow-up of invoking referenced tools. Nothing needed to call and chain this tool correctly is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3, but the description adds meaning beyond the schema: arguments are bound to prompt placeholders, omitted optionals fall back to defaults, and unresolved tokens indicate a required argument gap. This clarifies how the two parameters interact at runtime.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb ('Render') and resource ('Space Monkey prompt workflow'), and clarifies what is returned: complete instruction text plus effective bound arguments. It also differentiates itself from the sibling family by explicitly naming sm_list_prompts as the source of prompt names, so an agent can tell the two apart.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description establishes a clear workflow context: prompt names and arguments come from sm_list_prompts, and the rendered output should be followed by calling the sm_ tools it references. This gives strong usage context and routes the agent to the upstream tool, though it stops short of explicit 'when not to use' or exclusion statements.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources