Skip to main content
Glama

Sigistry Plugin Catalog (formerly Claude Registry)

Get a Claude Code plugin

get_plugin
Read-onlyIdempotent

Get the full details of a single Sigistry plugin by its id, including install commands, component counts, and its security-audit result (per-check pass/fail from the Verified by Sigistry methodology).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesthe plugin id, e.g. "sql-safety-net"

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
nameYes
tagsYeskeywords from the marketplace entry
agentsYesrelative paths to agent files
authorNo
countsYescomponent counts
skillsYesrelative paths to skill manifests
licenseNo
versionNo
categoryNo
commandsYesrelative paths to command files
homepageNo
descriptionNo
verificationNosecurity-audit result for this plugin (null when never audited)
installCommandYescommand to install this plugin
searchableTextYeslowercased text used for matching
installMarketplaceYescommand to add the marketplace to Claude Code

TDQS

A4/5.0
Behavior4/5

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

Annotations already declare the safety profile (readOnlyHint=true, idempotentHint=true, destructiveHint=false), so the bar is lower. The description adds value beyond annotations by disclosing what the response includes (install commands, component counts, and the per-check pass/fail security result), which is genuinely useful behavioral context. 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.

Conciseness5/5

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

A single, front-loaded sentence that leads with the tool's core purpose and packs the return-value details without padding. Every clause earns its place; there is no redundant restatement of the name or title.

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?

The tool is a simple single-parameter read, the safety profile is fully covered by annotations, and an output schema exists, so return values need no description. The only shortfall is the missing guidance on how get_plugin relates to verify_plugin for security-audit needs, but the definition is otherwise complete for correct invocation.

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 description coverage is 100% — the single id parameter is already documented in the schema with an example ('sql-safety-net'). The description only restates that the tool operates 'by its id', adding no new semantics over the schema. Baseline 3 applies because the schema does the heavy lifting.

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?

States a specific verb and resource ('Get the full details of a single Sigistry plugin by its id') and enumerates the return content (install commands, component counts, security-audit result). This clearly differentiates it from siblings list_categories and search_plugins, which operate at a different scope and grain.

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

Usage Guidelines3/5

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

The description implies usage context — you call this when you already have a plugin id and want full details — which is clear from 'by its id'. However, it names no alternatives or exclusions, and the security-audit portion overlaps with the sibling verify_plugin without any guidance on which tool covers that need. Meaningful but implicit.

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.4/5.0
Disambiguation5/5

Each tool targets a distinct resource/action: plugin details, skill details, category listing, plugin search, skill search, and verification recipe. There is no meaningful overlap between tools, and the descriptions reinforce the boundaries clearly.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (get_, list_, search_, verify_). The singular/plural variation is conventional and does not create confusion.

Tool Count5/5

Six tools is well-scoped for a plugin and skill catalog: discovery, detail retrieval, category browsing, and verification guidance are all represented without redundancy. Each tool earns its place.

Completeness5/5

This covers the core catalog workflow: browse categories, search plugins/skills, fetch details or portable skill source, and obtain verification instructions. The verify_plugin handoff to a local script is intentional and provides explicit next steps rather than a dead end.

Resources