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 role: get_guide retrieves a single registry row, list_guides returns the full registry, list_capabilities traverses the capability spine, and list_taxonomy returns vocabulary data. The detailed descriptions make potential overlap between capabilities and taxonomy resolvable.
All four tools follow a consistent get_/list_ verb_noun pattern with snake_case. Singular and plural nouns are used appropriately for the operation, matching common API conventions.
Four tools is a well-scoped size for a read-only registry server; each tool earns its place and covers a distinct query surface. There is no redundancy or unnecessary bloat.
The server provides complete read-oriented coverage for its domain: single-guide lookup, full registry listing, capability traversal with detail/filter options, and taxonomy vocabulary. Since the server is consistently framed as a read-only registry, there are no obvious dead ends.
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 declare the operation read-only and non-destructive, so the bar for extra disclosure is lower. The description adds the return-scope detail (artifact + routing-surface status) but does not mention edge behavior such as missing slug or error responses. This is adequate but not rich.
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?
A single sentence that front-loads the action and resource, with no filler. Every phrase adds information: the resource, the lookup key, and the included status aspects.
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 single-parameter get-by-slug operation with read-only annotations and an output schema, the description is complete. An agent has everything it needs to select and invoke the tool correctly; no pagination, mutation, or complex prerequisites are relevant.
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%, and the slug parameter already has a clear description with an example. The tool description merely repeats 'by slug' without adding format, constraints, or semantics beyond the schema, so the baseline of 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 includes a specific verb ('Get'), a singular resource ('one guide's registry row'), and the lookup key ('by slug'), which also differentiates it from sibling list_guides. Adding 'with its artifact + routing-surface status' clarifies exactly what is returned without ambiguity.
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 makes clear that it is for retrieving a single registry row when a slug is known, but it does not explicitly contrast itself with list_guides or state when to prefer one over the other. Usage context is implied rather than stated as explicit when/when-not guidance.
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?
Adds a critical behavioral disclosure beyond the readOnly/destructive annotations: 'ksao_type/canon_component_id are null by design where unresolved — treat null as not yet joined, never as no link.' This corrects a likely misreading of null results and materially changes how an agent interprets output. No contradiction with openWorldHint=false — this is null semantics within the returned set, not a claim about exhaustiveness of results.
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: purpose, then usage recipes, then the null-semantics caveat. The defining scope is front-loaded and the description contains no filler, repetition of schema text, or restatement of the title.
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 12-parameter tool this is nearly complete: the schema documents every parameter, an output schema exists, and annotations carry the safety profile. The description supplies the usage recipes and the null caveat that schema fields alone couldn't convey. The only gap is the absence of explicit routing guidance against the three sibling tools.
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%, so the baseline is 3. The description adds value above baseline by wiring parameters into usage patterns — min_guides=2 for the cross-cutting spine, role for job requirements, capability_detail for the hydration mode switch — which the individual parameter descriptions do not convey.
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?
States a specific verb and resource — 'Traverse the capability spine joining books, guides (capability packages), KSAO-grade elements and jobs' — which clearly delimits the cross-entity nature of the query surface. This differentiates it from the sibling tools (get_guide, list_guides, list_taxonomy), which operate on single entity types.
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?
Gives explicit parameter recipes: 'Use min_guides=2 for the cross-cutting capabilities', 'role=<role> for what a job requires', 'capability_detail=<slug> for one package with its elements and books hydrated'. These are strong when-to-use-signals, but the description never names sibling tools or states when NOT to use this tool in favor of get_guide/list_guides/list_taxonomy.
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 this as a read-only, non-destructive operation. The description adds useful context about the returned registry scope, including the distribution roll-up and guides with no rendering surface. It does not describe pagination or auth, but those are less critical given the annotations and output schema.
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, front-loaded with the main resource and purpose, and contains no filler. The long parenthetical and em-dash make it somewhat dense, but it remains compact and informative.
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 13 parameters fully described in the schema and an output schema present, the description only needs to establish scope and selection context, which it does well. It could be more explicit about routing among siblings, but the name and description are sufficient for correct invocation in most cases.
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 input schema covers 100% of the parameters with detailed descriptions, so the schema carries the parameter-semantics burden. The tool description itself does not add parameter-level meaning beyond the schema, which places it at the baseline.
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 clear verb and resource: 'List the bicycle.guide registry' and enumerates exactly what is included (home, status, access, standard, syndication, grounding, distribution roll-up). This distinguishes it from the sibling tools, especially get_guide, which is singular and targeted.
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?
Usage is implied by the title and description: use this tool to list the entire guide registry. However, there is no explicit guidance about when to prefer this over list_capabilities or list_taxonomy, nor any exclusion or alternative-mentioned condition.
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 the safety profile is covered. The description adds useful context like 'live guide counts' and 'machine-readable data rather than prose,' but it does not disclose additional behavioral details such as performance, freshness guarantees, or error behavior. 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that begins with the core action and resource, then efficiently enumerates the returned vocabulary components. Every clause adds meaningful detail without fluff.
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 there are no parameters, an output schema exists, and annotations cover the read-only and non-destructive nature, the description provides enough context for an agent to select and invoke this tool correctly. It also names the major categories of data returned.
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 and an empty input schema, so there is no parameter semantics burden on the description. The baseline of 4 applies because no parameter explanation is needed.
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 identifies the resource (the bicycle.guide vocabulary) and enumerates its concrete contents: domains, shelves, series, personas, guide_types, and classification conventions. This makes the tool's purpose distinct from siblings like list_guides or list_capabilities without needing to inspect schemas.
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 phrase 'rather than prose' gives some context that this returns structured vocabulary data, and the tool name implies taxonomy lookup. However, there is no explicit statement of when to prefer this over siblings such as list_guides or get_guide, nor any exclusion guidance.
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