Skip to main content
Glama

sim_create_collection

Destructive

Mint a named Collection and return its content id. A collection carries no member list of its own — a mutable list would change the collection's own id every time something joined it, the same reason Lineage lives beside a model rather than inside it. Add members with sim_link(collectionID, "hasMember", memberID) and read them back with sim_neighbors(collectionID, "hasMember") or sim_edges(collectionID). Content-addressed: creating a collection with a name already used returns the existing id, not a new sibling.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYescollection name

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations declare destructiveHint=true and openWorldHint=true. The description adds the crucial content-addressed behavior: reusing an existing name returns the existing id instead of creating a duplicate. This is a semantic nuance beyond the annotation flags. It also explains the design rationale for not storing mutable members, which helps an agent understand side effects. 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 main action and return value are front-loaded. The subsequent explanation about member lists and the analogy to Lineage is useful behavioral context, but it does add length. It is still efficient and each sentence contributes to understanding the tool's scope, so it earns a high score with a slight deduction for extra verbosity.

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?

With a single parameter and no output schema, the tool's behavior is well covered: it describes the return (content id), how to interact with related tools (sim_link, sim_neighbors), and the content-addressed semantics that prevent surprising duplicates. It does not enumerate error conditions (e.g., invalid name format), but for a simple creation tool, the coverage is strong.

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?

The only parameter 'name' has a schema description ('collection name'), but the tool description adds that the name is content-addressed — duplicates resolve to the existing id. This directly informs how to interpret the parameter value and its effect, exceeding what the schema alone conveys.

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 the exact action ('Mint a named Collection'), the return value ('return its content id'), and distinguishes this tool from siblings like sim_link and sim_neighbors by explicitly stating that it creates only and does not carry members. This leaves no ambiguity about what the tool does.

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 names the tools used for adding members (sim_link) and reading them (sim_neighbors, sim_edges), giving clear routing guidance. It does not explicitly state 'do not use for member management', but the separation of responsibilities is implied strongly. A minor gap is not specifying prerequisites or when to avoid this tool.

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