Skip to main content
Glama
megamaced

collectives-mcp

by megamaced

get_template

Read-onlyIdempotent

Retrieve a page template's metadata and markdown body to preview the output of creating a page from that template.

Instructions

Read a page template's metadata and markdown body. Use this to inspect what create_page(templateId) will produce.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
templateIdYesTemplate id from list_templates.
collectiveIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.4.1

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already declare readOnly, idempotent, and non-destructive. The description adds that it returns 'metadata and markdown body', which clarifies the output format beyond the annotations. No contradictions.

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?

Two concise sentences with no redundancy. All information is relevant and directly useful.

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?

For a simple read operation, the description covers the essential context: what it does, what it returns, and a typical use case. No output schema exists, so no need to elaborate further.

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

Parameters2/5

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

Schema coverage is 50%: templateId has a helpful description ('from list_templates'), but collectiveId has none. The tool description does not add any additional parameter context, leaving collectiveId's role ambiguous. This is below average given the incomplete schema.

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 clearly states the tool reads a page template's metadata and markdown body, and explicitly links to create_page(templateId) for inspection. This provides a specific verb and resource, making the purpose unambiguous even without comparing to siblings.

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?

It provides a concrete use case ('Use this to inspect what create_page(templateId) will produce'). While it doesn't explicitly contrast with alternatives like list_templates, the usage scenario is clear enough for an agent to decide when to call it.

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