Skip to main content
Glama

meta-stamp-pockets

pull_content

Pull licensed creator content from a specific pocket by ID. Use this tool when an AI agent needs to retrieve verified, provenance-tracked content for generation, RAG, or training purposes. Do NOT use for browsing or discovery — use search_pockets or list_pockets instead. Requires a valid Bearer token for authentication; unauthenticated requests return HTTP 401. Successful pulls trigger a metered charge ($0.001–$0.25 depending on content tier) and the transaction is logged for creator royalty distribution. The pocket_id parameter is a 24-character hex string identifying the specific content pocket to pull from. Returns the full content payload with provenance metadata including creator attribution and license terms.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryNoOptional natural language focus query used to narrow or contextualize the returned content within the selected pocket.
pocket_idYesThe 24-character hex identifier of the content pocket to pull from. Obtain this from search_pockets or list_pockets results.

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description fully discloses behavioral traits: authentication needed (HTTP 401 otherwise), metered charge ($0.001–$0.25), royalty logging. It does not mention rate limits or idempotency, but for a read-like operation this is acceptable. No contradiction with annotations.

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

Conciseness4/5

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

The description is a single paragraph that efficiently covers purpose, usage, auth, cost, and return value. It is front-loaded with the main action. However, it could be slightly more structured (e.g., bullet points) for quick scanning. No wasted sentences.

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

Completeness4/5

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

Given no output schema, the description adequately explains the return value ('full content payload with provenance metadata'). It covers auth, cost, parameter details, and usage boundaries. Lacks explicit mention of error cases beyond 401, but the tool is simple and the description is fairly complete.

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

Parameters3/5

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

Schema coverage is 100% with both parameters described in the schema. The description adds only redundant detail for pocket_id and query. It provides context about the hex format but does not significantly add meaning beyond the schema. Baseline score of 3 is appropriate.

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 action: 'Pull licensed creator content from a specific pocket by ID.' It distinguishes from sibling tools by explicitly saying 'Do NOT use for browsing or discovery — use search_pockets or list_pockets instead.' This provides a specific verb+resource and differentiates from alternatives.

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

Usage Guidelines5/5

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

The description gives explicit when-to-use context: 'retrieve verified, provenance-tracked content for generation, RAG, or training purposes.' It also states when not to use and provides alternative tools. Auth requirements ('Requires a valid Bearer token') and cost implications are mentioned, offering clear guidance.

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.

TDQS

A4.7/5.0
Disambiguation5/5

Each tool has a distinct purpose: listing all pockets, searching pockets, and pulling content. No overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using lowercase_with_underscores: list_pockets, search_pockets, pull_content.

Tool Count5/5

Three tools is ideal for a content catalog server: browsing, searching, and retrieving. Each tool serves a necessary role without bloat.

Completeness5/5

The tool set covers all essential operations for a consumer-facing content platform: discovery through listing and searching, and retrieval through pulling. No obvious gaps.