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

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changed
    • addedOutput schema / properties / verification
      Added value: +{
      +  "anyOf": [
      +    {
      +      "additionalProperties": false,
      +      "properties": {
      +        "badgeUrl": {
      +          "description": "SVG badge for this plugin",
      +          "type": "string"
      +        },
      +        "checks": {
      +          "description": "per-check results of the security audit",
      +          "items": {
      +            "additionalProperties": false,
      +            "properties": {
      +              "detail": {
      +                "type": "string"
      +              },
      +              "id": {
      +                "type": "string"
      +              },
      +              "status": {
      +                "description": "pass | fail | n/a",
      +                "type": "string"
      +              },
      +              "title": {
      +                "type": "string"
      +              }
      +            },
      +            "required": [
      +              "id",
      +              "title",
      +              "status"
      +            ],
      +            "type": "object"
      +          },
      +          "type": "array"
      +        },
      +        "commit": {
      +          "description": "pinned commit the verification applies to",
      +          "type": "string"
      +        },
      +        "date": {
      +          "description": "date of the last audit run",
      +          "type": "string"
      +        },
      +        "firstSeen": {
      +          "description": "date the plugin entered the registry",
      +          "type": "string"
      +        },
      +        "hosting": {
      +          "description": "registry (vendored) | external (author repo)",
      +          "type": "string"
      +        },
      +        "methodologyUrl": {
      +          "type": "string"
      +        },
      +        "methodologyVersion": {
      +          "type": "string"
      +        },
      +        "repo": {
      +          "description": "external repo (owner/name), when externally hosted",
      +          "type": "string"
      +        },
      +        "status": {
      +          "description": "verified | listed | stale | failed",
      +          "type": "string"
      +        }
      +      },
      +      "required": [
      +        "status",
      +        "checks"
      +      ],
      +      "type": "object"
      +    },
      +    {
      +      "type": "null"
      +    }
      +  ],
      +  "description": "security-audit result for this plugin (null when never audited)"
      +}
  2. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "http://json-schema.org/draft-07/schema#",
      +  "additionalProperties": false,
      +  "properties": {
      +    "agents": {
      +      "description": "relative paths to agent files",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "author": {
      +      "additionalProperties": false,
      +      "properties": {
      +        "name": {
      +          "type": "string"
      +        },
      +        "url": {
      +          "type": "string"
      +        }
      +      },
      +      "type": "object"
      +    },
      +    "category": {
      +      "type": "string"
      +    },
      +    "commands": {
      +      "description": "relative paths to command files",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "counts": {
      +      "additionalProperties": false,
      +      "description": "component counts",
      +      "properties": {
      +        "agents": {
      +          "type": "integer"
      +        },
      +        "commands": {
      +          "type": "integer"
      +        },
      +        "skills": {
      +          "type": "integer"
      +        }
      +      },
      +      "required": [
      +        "commands",
      +        "agents",
      +        "skills"
      +      ],
      +      "type": "object"
      +    },
      +    "description": {
      +      "type": "string"
      +    },
      +    "homepage": {
      +      "type": "string"
      +    },
      +    "id": {
      +      "type": "string"
      +    },
      +    "installCommand": {
      +      "description": "command to install this plugin",
      +      "type": "string"
      +    },
      +    "installMarketplace": {
      +      "description": "command to add the marketplace to Claude Code",
      +      "type": "string"
      +    },
      +    "license": {
      +      "type": "string"
      +    },
      +    "name": {
      +      "type": "string"
      +    },
      +    "searchableText": {
      +      "description": "lowercased text used for matching",
      +      "type": "string"
      +    },
      +    "skills": {
      +      "description": "relative paths to skill manifests",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "tags": {
      +      "description": "keywords from the marketplace entry",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "version": {
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "id",
      +    "name",
      +    "tags",
      +    "commands",
      +    "agents",
      +    "skills",
      +    "counts",
      +    "installMarketplace",
      +    "installCommand",
      +    "searchableText"
      +  ],
      +  "type": "object"
      +}
  3. First observed

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful context about what details are returned (install commands, component counts, security-audit result) but does not disclose additional behavioral traits such as error cases or lookup semantics. No contradiction exists.

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?

The description is a single well-structured sentence that front-loads the core purpose ('Get the full details of a single Sigistry plugin by its id') and then adds valuable specifics. Every clause earns its place without redundancy.

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?

Given the tool has one required parameter, a rich output schema, and annotations covering safety and idempotency, the description is complete enough for an agent to select and invoke it correctly. No critical contextual gap is apparent.

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 required 'id' parameter is described with an example ('sql-safety-net'). The description only restates that lookup is by id, so it adds little meaning beyond the schema, which is acceptable at the baseline.

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 uses a specific verb and resource: 'Get the full details of a single Sigistry plugin by its id.' It also lists concrete contents (install commands, component counts, security-audit result), which distinguishes it from sibling tools like get_skill and search_plugins.

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 clearly establishes the context: use this tool when you already have a plugin id and need full details for that single plugin. It does not explicitly name alternatives or exclusion cases, but the id-based single-item purpose is evident enough to guide selection.

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