Skip to main content
Glama

Sigistry Plugin Catalog (formerly Claude Registry)

Server Details

Renamed: prefer com.sigistry/plugin-catalog. This legacy endpoint keeps working.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

6 tools
get_pluginGet a Claude Code pluginA
Read-onlyIdempotent
Inspect

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).

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

Output Schema

ParametersJSON Schema
NameRequiredDescription
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.

get_skillGet a verified skill (with portable source)A
Read-onlyIdempotent
Inspect

Get one Sigistry skill by name, including the full raw SKILL.md source. The source is portable: it can be applied directly in any SKILL.md-aware agent (Claude Code, Claude Desktop, and others) without installing anything, or installed natively in Claude Code via the parent plugin, which keeps it verified and updated. The returned skill passed the Sigistry skill-safety check at the parent plugin's verification date.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameYesthe skill name, e.g. "assessment-scoring" (find names via search_skills)

Output Schema

ParametersJSON Schema
NameRequiredDescription
nameYesstable skill name, e.g. "assessment-scoring"
repoNoauthor repo (owner/name), when externally hosted
commitNopinned commit the source is served from, when externally hosted
pluginYesparent plugin id that ships this skill
sourceYesthe complete raw SKILL.md (frontmatter + body); null only if the fetch failed
hostingYes"registry" (vendored here) or "external" (author repo, verified at a pinned commit)
detailUrlYeshuman-readable page for this skill
sourceUrlYesGitHub location of the skill directory
descriptionYesthe skill trigger: when an agent should load it
verificationYesverification status of the parent plugin; prefer "verified"
verifiedDateYesdate of the verification run covering this skill
installCommandYesClaude Code command installing the parent plugin (skill loads automatically)
pluginCategoryYescategory of the parent plugin

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already mark this as read-only and idempotent, and the description adds meaningful behavior: returns the full portable source, is safe for direct use in any SKILL.md-aware agent, and has passed the Sigistry safety check. This goes beyond the schema and annotations without contradicting them.

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 concise, front-loaded with the core action, and each sentence earns its place by explaining the returned content, how to use it, and the verification guarantee. There is no fluff or repetition of schema details.

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 single-parameter read-only tool with a rich output schema, the description covers what the tool returns, how portable the result is, how to discover valid names, and what verification status means. An agent has enough to decide when and how to call this correctly without further digging.

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% and the single parameter 'name' already includes an example and guidance to use search_skills for discovery. The description adds little parameter semantics beyond 'by name' and does not need to, given the schema already carries the necessary detail.

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 names the specific verb ('Get'), the resource ('one Sigistry skill'), and the key content ('full raw SKILL.md source'), making the purpose immediately clear. It also differentiates from sibling tools like search_skills and get_plugin by emphasizing portability and verification.

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 clearly explains how the result can be used (applied directly or installed natively) and references search_skills for finding skill names. It does not explicitly state when to prefer siblings like get_plugin over get_skill, but the context strongly implies the distinction.

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

list_categoriesList plugin categoriesA
Read-onlyIdempotent
Inspect

List the distinct plugin categories in the Sigistry marketplace with a count of plugins in each, plus the total plugin count.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
totalYestotal number of plugins
categoriesYescategories sorted by descending plugin count

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotent, so the description does not need to restate safety. It adds behavioral detail by specifying the return structure (count per category and total plugin count), which goes beyond 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?

Single sentence, front-loaded with the verb 'List', includes key output details without redundant language.

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 zero-parameter read-only tool with an output schema, the description adequately explains what the tool returns. It names the marketplace context (Sigistry) and the specific aggregate counts.

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?

No parameters exist, so baseline 4 applies. The description compensates with a clear output definition, making it unnecessary to document any parameter semantics.

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 (list), a resource (plugin categories), and distinguishes itself from siblings (get_plugin, search_plugins) by describing an aggregate count operation. It clearly defines the scope: distinct categories with per-category counts plus total.

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?

Does not explicitly state when to use this tool or alternatives. The purpose implies usage when one needs an overview of categories, but the description lacks explicit when/when-not guidance. Sibling tools exist, so some guidance would help.

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

search_pluginsSearch Claude Code pluginsA
Read-onlyIdempotent
Inspect

Search the Sigistry marketplace of Claude Code plugins by keyword and/or category. Returns matches with their install command and verification status (the registry runs an eight-check security audit; prefer "verified" plugins when recommending an install).

ParametersJSON Schema
NameRequiredDescriptionDefault
queryNokeywords, e.g. "database migration"
categoryNoe.g. "database", "devops", "git"

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYesup to 15 matching plugins, best matches first

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already provide readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds meaningful behavioral context by disclosing that results include install commands and verification status, and that the registry runs an eight-check security audit. This enriches the agent's decision-making beyond the 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?

Two sentences front-load the action and scope, then concisely add return details and practical selection guidance. There is no filler, repetition of schema fields, or irrelevant information.

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-only search with two optional parameters, an output schema, and strong annotations, the description covers the search target, the matching dimensions, result contents, and the security signal to prioritize. Nothing critical is missing for correct selection and invocation.

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?

Schema coverage is 100%, so the baseline is 3. The description adds value by clarifying the relationship between the two parameters with 'by keyword and/or category', indicating query and category can be used independently or together—something the individual property descriptions do not explicitly state.

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 names a specific verb, resource, and marketplace: 'Search the Sigistry marketplace of Claude Code plugins by keyword and/or category.' It also states what is returned (install command, verification status), which clearly distinguishes plugin search from sibling tools like get_plugin or search_skills.

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 gives clear context for when to use the tool: when searching marketplace plugins by keyword or category. It does not explicitly name alternatives or exclusion conditions, but the search scope and the added recommendation guidance ('prefer verified plugins') make the intended usage obvious.

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

search_skillsSearch verified Claude Code skillsA
Read-onlyIdempotent
Inspect

Search the Sigistry catalog of verified skills (SKILL.md instruction sets for AI agents) by keyword, optionally filtered to one parent plugin. Every skill passed the skill-safety check: no command shadowing, honestly-scoped triggers, no injection or concealment language, no unsafe scripts. Use get_skill to fetch the full portable source of a match.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryNokeywords, e.g. "changelog" or "security review"
pluginNorestrict to skills shipped by this plugin id

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultsYesup to 20 matching skills, best matches first

TDQS

A4.2/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, and non-destructive behavior. The description adds valuable context beyond annotations by explaining the 'verified' status and the safety-check criteria, giving agents confidence in result quality. It does not mention pagination or ordering, but the output schema covers return structure.

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?

Three concise sentences, each earning its place: the purpose sentence defines the resource and filter, the second explains trustworthiness, and the third routes to the correct next sibling. Information is front-loaded and there is no filler.

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?

For a low-complexity search tool with a rich output schema and safety annotations, the description covers purpose, scope, safety, and next steps. It leaves minor gaps such as behavior with no query and explicit differentiation from search_plugins, but the core invocation needs are met.

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%, so both query and plugin are already well documented. The description restates 'by keyword' and 'parent plugin' in prose but adds no new parameter-level meaning beyond what the schema already provides.

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?

Description states a specific verb ('Search'), a precise resource ('Sigistry catalog of verified skills'), and the optional plugin filter. It also clarifies that skills are SKILL.md instruction sets, distinguishing it clearly from sibling tools like search_plugins and get_skill.

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 clearly positions search as the discovery entry point and explicitly directs the agent to use get_skill for fetching the source of a match. It does not explicitly contrast with search_plugins or list_categories, so it stops short of full when-to-use guidance for all siblings.

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

verify_pluginVerify a Claude Code plugin (pre-publish, runs locally)A
Read-onlyIdempotent
Inspect

Get the recipe to run the Sigistry verification methodology (the eight static checks that gate the Verified badge: manifest integrity, hook safety, agent tool scopes, command hygiene, skill structure, skill safety, no secrets, documentation) against a plugin BEFORE publishing it. The verification runs entirely on the local machine via a dependency-free open-source Node script; the plugin code never leaves the user's computer and this server performs no computation. Call this when the user wants their plugin or skill checked, then follow the returned steps: download the script, run it against the plugin directory, and fix any FAIL findings it reports.

ParametersJSON Schema
NameRequiredDescriptionDefault
pluginPathNolocal path to the plugin directory, used to fill in the run command (optional)

Output Schema

ParametersJSON Schema
NameRequiredDescription
stepsYeswhat the agent should do, in order
checksYesthe eight checks the script will run
commandsYes
nextStepsYes
runsWhereYesalways "local": verification executes on the user's machine
interpretingYes
methodologyUrlYes
methodologyVersionYes

TDQS

A4.5/5.0
Behavior5/5

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

The description goes well beyond the readOnly/idempotent/destructive annotations by disclosing that verification runs entirely locally, the plugin code never leaves the user's machine, and the server performs no computation. It also clarifies that the tool returns a recipe to follow rather than performing the verification itself, which is a crucial behavioral caveat.

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 detailed but efficient: it states the purpose, enumerates the checks, explains the privacy model, and gives usage instructions without redundancy. The important behavioral facts are front-loaded before the longer list of checks.

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 tool with one optional parameter and an output schema, the description is complete. It tells the agent what the tool does, when to call it, what steps to follow afterward, and what privacy/execution behavior to expect. The existence of an output schema covers return-value details.

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%, so the schema already documents pluginPath as an optional local path used to fill in the run command. The description reinforces this by referring to running the script against the plugin directory, but it adds little meaning beyond the 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 leads with a specific action ('Get the recipe to run the Sigistry verification methodology') tied to a clear resource (verifying a Claude Code plugin before publishing). It distinguishes itself from sibling lookup/search tools by focusing on the pre-publish verification workflow rather than fetching or searching plugin data.

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 explicitly tells the agent when to call it: 'Call this when the user wants their plugin or skill checked.' It also gives follow-up steps the agent should relay. It does not explicitly state when not to use it or compare against sibling alternatives, but the usage context is clear.

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

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    B
    maintenance
    Read-only catalog of the @blueprint-modular/core design system (104 components). Four tools — list/search/get components and suggest compositions. Public, no auth, Streamable HTTP.
    4
    1
    Apache 2.0
  • A
    license
    A
    quality
    B
    maintenance
    Provides a local catalog of MCP servers (legal data connectors and agent skills) from MateMatic Boutique, enabling search and obtaining install commands without proxying requests.
    4
    Apache 2.0
  • F
    license
    A
    quality
    B
    maintenance
    Enables querying and analyzing a legacy, file-based vulnerability registry via MCP tools for CVE lookup, search, vendor navigation, and aggregate statistics.
    5
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server for the European Union Vulnerability Database (EUVD) maintained by ENISA. Enables searching for vulnerabilities with flexible filters, fetching latest, critical, and exploited vulnerabilities, and looking up specific vulnerabilities and advisories by ID.
    MIT
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