guide-registry
Server Details
Read-only Bicycle Guide registry: published guides, homes, taxonomy, capability spine. No auth.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool has a clearly distinct purpose: get_guide is a single-item lookup, list_guides is the full registry listing, list_taxonomy exposes vocabulary/classification data, and list_capabilities handles cross-cutting capability traversals. No two tools appear to do the same thing.
All tool names follow the same verb_noun snake_case pattern: get_ for single-item retrieval and list_ for collection-style queries. This is consistent and predictable across the entire set.
Four tools is well-scoped for a read-only registry server: one getter, two listers, and one taxonomy/capability explorer. Each tool earns its place and the count feels appropriate for the stated purpose.
The read-side is well covered: single lookup, full listing, taxonomy, and capability spine traversal. The only notable gaps are the absence of create/update/delete or filtering operations, which may be out of scope for a registry but could be limiting for agents needing to manage registry data.
Available Tools
4 toolsget_guideGet one guide's registry rowARead-onlyInspect
Get one guide's registry row by slug, with its artifact + routing-surface status.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The guide slug, e.g. start-a-company. |
Output Schema
| Name | Required | Description |
|---|---|---|
| guide | Yes | |
| api_version | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already convey readOnlyHint=true and destructiveHint=false, so the description does not need to restate safety. It adds a useful detail about including artifact and routing-surface status, but it does not describe error behavior, return structure, or any side effects. With annotation coverage, this is adequate but not exceptional.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. Every word adds value: action, resource, lookup key, and the included status details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with one well-documented parameter and an output schema, the description is complete. An agent has everything needed to decide when to call it and how to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema fully documents the only parameter 'slug' with an example, giving 100% schema description coverage, so baseline is 3. The description reinforces that the lookup uses slug but does not add further semantic detail beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Get'), resource ('one guide's registry row'), and the key parameter ('by slug'). It adds helpful scope ('with its artifact + routing-surface status') and distinguishes itself from sibling list tools, which operate over collections rather than a single guide.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The singular 'one guide' and 'by slug' imply this tool is for fetching a specific guide rather than listing all guides, but no explicit guidance or alternative is mentioned. The description does not state when to prefer get_guide over list_guides or the other siblings, leaving usage to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_capabilitiesTraverse the capability spine (books · guides · KSAO elements · jobs)ARead-onlyInspect
Traverse the capability spine joining books, guides (capability packages), KSAO-grade elements and jobs. Use min_guides=2 for the cross-cutting capabilities that span many guides, role= for what a job requires, capability_detail= for one package with its elements and books hydrated. ksao_type/canon_component_id are null by design where unresolved — treat null as 'not yet joined', never as 'no link'.
| Name | Required | Description | Default |
|---|---|---|---|
| q | No | Substring match on the element label. | |
| role | No | Elements required by this job role, e.g. compensation-analyst. | |
| limit | No | Cap the rows returned (default 200). `total` always reports the true count. | |
| has_job | No | Only elements that some job requires (via a career guide). | |
| ksao_type | No | knowledge | skill | ability | other — from a panel validated at 95.1% on gold O*NET labels. 'other' is UNVALIDATED (no gold labels existed for it). | |
| capability | No | Elements taught by this capability (guide slug). | |
| min_guides | No | Only elements taught by >= N capabilities. 2 gives the cross-cutting spine. | |
| conflicting | No | Only elements where 2+ non-career guides define the same label differently — these need a ruling. | |
| construct_class | No | person-attribute (knowledge/skill/ability — what a JOB requires and a learner develops) | condition-or-outcome (what a capability PRODUCES, e.g. 'Retention & Workforce Stability'). Only ~30% of elements are person attributes — filter to these for 'what does this role need'. | |
| capability_detail | No | Return ONE capability with its elements and books hydrated, instead of querying elements. | |
| has_canon_identity | No | true = only elements resolved to a JobFrame canon component (an IDENTITY, panel-adjudicated). false = only unresolved. | |
| canon_promotion_candidate | No | true = only elements the JobFrame canon has NO component for. This is a real answer, not a failed lookup — these are the constructs to PROMOTE into the canon. |
Output Schema
| Name | Required | Description |
|---|---|---|
| total | No | |
| elements | No | |
| returned | No | |
| capability | No | |
| spine_meta | Yes | |
| api_version | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint=true annotation, the description discloses a critical interpretation detail: null values for ksao_type/canon_component_id mean 'not yet joined', not 'no link'. This prevents a likely misinterpretation and is exactly the kind of behavioral context annotations cannot express.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each earning its place: the core traversal statement, the key parameter recipes, and the essential null-handling caveat. The most actionable guidance 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.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (12 parameters, an output schema, and several filtering modes), the description provides a compact orientation plus the one non-obvious behavioral trap. It does not discuss every parameter, but the input schema already covers those; the description supplies the missing strategic context.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the baseline is 3, but the description adds meaningful usage semantics for min_guides, role, and capability_detail that go beyond the raw schema descriptions. It frames min_guides=2 as producing the 'cross-cutting spine' and capability_detail as hydrating elements and books, which helps an agent choose parameters more intelligently.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific operation ('Traverse the capability spine') and a clear resource set (books, guides, KSAO elements, jobs), which distinguishes it from the sibling list_guides and get_guide tools. It also gives concrete parameter-driven modes (min_guides, role, capability_detail) that clarify the tool's scope.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides explicit usage guidance for three key parameters: min_guides=2 for cross-cutting capabilities, role=<role> for job requirements, and capability_detail=<slug> for hydrated packages. It does not explicitly state when to prefer a sibling tool, but the intended contexts are clear from the examples.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_guidesList the guide registryARead-onlyInspect
List the bicycle.guide registry — every guide's home, status, access, standard, syndication and grounding, plus the distribution roll-up (including guides homed to a property with no rendering surface).
| Name | Required | Description | Default |
|---|---|---|---|
| home | No | Filter by owning property, e.g. jobframe, peopleanalyst, penwright. | |
| limit | No | Cap the rows returned. Default 100, max 500. | |
| access | No | Filter by access: free | gated. | |
| domain | No | Filter by life-domain — the layer ABOVE the subject shelf: work | life | play. Derived from the guide's category via content/registry/shelves.json. `rollup.by_domain` lists them. | |
| fields | No | Row shape. "compact" returns only slug/title/home/status/access/price_cents/has_artifact/category/domain/personas/canonical_url — no rollup, no registry_meta. "full" returns the entire decorated registry row plus the rollup and registry_meta, as before. Default over this server: "compact". | |
| series | No | Filter by guide series — the operational grouping of guides made to be used together, e.g. competencies, penwright-writing, startup-journey, ladder:hr-business-partner. | |
| status | No | Filter by status: on | draft. | |
| persona | No | Filter by the audience a guide serves, e.g. people-analytics-professional, aspiring-author, executive-performance-leader. A guide can serve several; this matches any of them. | |
| category | No | Filter by subject shelf — the reader-facing topic axis, e.g. field, skills, analytics, writing, comp. Matches the primary category OR a cross-shelf tag. | |
| standard | No | Filter by standard: bicycle | life-stage | problem-opportunity. | |
| guide_type | No | Filter by guide CLASS: career (level-based job guides, their own program) | capability | book_profile. Combine with series=ladder:<role> to get one role's whole ladder. | |
| has_artifact | No | Only guides that do (true) / do not (false) have a new-design artifact. | |
| home_unrouted | No | Only guides whose home has NO rendering surface at all (the distribution gap). |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | |
| limit | Yes | |
| fields | Yes | |
| guides | Yes | |
| rollup | No | |
| filters | Yes | |
| api_version | Yes | |
| registry_meta | No | |
| total_matching | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, openWorldHint=false, and destructiveHint=false, fully covering the safety profile. The description adds meaningful context by disclosing that the result includes the distribution roll-up and explicitly includes guides with no rendering surface — an inclusion edge case an agent might otherwise not expect. It does not cover pagination, ordering, or performance, though the schema's limit parameter partially addresses volume.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
One front-loaded sentence that places the verb and resource first, then adds scope details and the distribution-gap edge case. The parenthetical is dense but informative, and no clause is wasted. Slightly heavy in the middle, but efficient overall.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 13 optional parameters, 100% schema coverage, an output schema, and read-only/non-destructive annotations, the description plus structured metadata supplies virtually everything needed for correct invocation. The only real gap is explicit routing guidance against the sibling tools, which was already penalized under usage_guidelines.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%: all 13 parameters have rich schema descriptions, including the domain derivation note ('via content/registry/shelves.json') and the 'compact' vs 'full' row-shape distinction. The description itself only loosely maps to the parameters by naming fields (home, status, access, standard) and the roll-up, adding no new syntax, defaults, or format details beyond the schema. Baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('List') and a named resource ('the bicycle.guide registry'), then specifies the exact scope: every guide's home, status, access, standard, syndication and grounding, plus the distribution roll-up, and even the edge case of guides homed to a property with no rendering surface. This precision makes it clearly distinct from siblings get_guide (singular fetch), list_capabilities, and list_taxonomy (different registries).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No explicit when-to-use or when-not-to-use guidance is provided, and no alternative tool is named. The verb 'List' plus the registry resource and the extensive filter parameters imply this is the enumeration/browsing tool versus get_guide for a single record, but that routing is left to inference rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_taxonomyGet the guide program's vocabularyARead-onlyInspect
Get the bicycle.guide vocabulary — domains, shelves (with live guide counts), series, personas, guide_types, and the classification conventions (pillar/spoke, discriminant home, bicycle-guide-serves-all) as machine-readable data rather than prose.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| series | Yes | |
| domains | Yes | |
| shelves | Yes | |
| personas | Yes | |
| api_version | Yes | |
| conventions | Yes | |
| guide_types | Yes | |
| counts_basis | Yes | |
| unclassified | Yes | |
| registry_meta | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so no additional safety disclosure is needed. The description adds useful context such as 'live guide counts' and 'machine-readable data,' but it does not discuss response size, pagination, or other runtime behavior. The output schema presumably 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the core action ('Get the bicycle.guide vocabulary') and then lists the taxonomy elements. The list is somewhat dense but every item provides useful information and nothing is filler or redundant.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With zero parameters, an output schema available, and read-only annotations already in place, the description is sufficient for an agent to invoke the tool correctly. It clearly communicates the scope and the data categories returned, leaving little ambiguity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so there are no parameter semantics to clarify. The description's enumeration of returned categories is useful but not parameter-related; with no parameters, the baseline of 4 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses the specific verb 'Get' with the resource 'bicycle.guide vocabulary' and enumerates exactly what is included: domains, shelves with live guide counts, series, personas, guide_types, and classification conventions. This clearly distinguishes it from sibling tools that focus on guides or capabilities.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description establishes a clear use case: retrieve the taxonomy/vocabulary as machine-readable data rather than prose. It does not explicitly name alternatives or state when not to use it, but the resource is distinct enough from sibling tools that an agent can infer the right context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
4 tool updates
- First observed
get_guide - First observed
list_capabilities - First observed
list_guides - First observed
list_taxonomy
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity – fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge – works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge – works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Read-only Bicycle Guide registry: published guides, homes, taxonomy, capability spine. No auth.
41Read-only Bicycle Guide registry: published guides, homes, taxonomy, capability spine. No auth.
41Read-only Bicycle Guide registry: published guides, homes, taxonomy, capability spine. No auth.
41Read-only Bicycle Guide registry: published guides, homes, taxonomy, capability spine. No auth.
41
Related MCP Servers
- AlicenseAqualityBmaintenanceProvides read-only access to Homechecker's Australian residential-building guidance corpus, with tools for listing, searching, retrieving guides, and generating buyer checklists.4MIT
- AlicenseNot gradedqualityBmaintenanceEnables read-only research of public Outsite locations, quoted stay rates, and individual room calendars.MIT
- AlicenseNot gradedqualityCmaintenanceProvides access to public GST Cranes resources including company records, Crane Wiki, marketplace, and developer APIs without authentication.72MIT
- AlicenseNot gradedqualityCmaintenanceEnables read-only access to Pocket Agent's product information, public persona templates, and app catalog. No authentication required.521MIT