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 by slug, list_guides enumerates the full registry, list_capabilities traverses the capability/job spine, and list_taxonomy returns vocabulary and classification data. There is no meaningful overlap between the four operations.
All tool names follow the consistent get_<singular> / list_<plural> pattern with clear resource nouns. The naming is predictable, uniform, and easy to extend.
Four tools is well-scoped for a focused read-only registry: one detail lookup, one full listing, one capability traversal, and one taxonomy view. Each tool earns its place without redundancy.
The tool surface covers the obvious query paths for a guide registry: retrieving one guide, listing all guides, exploring capabilities and jobs, and accessing taxonomy. No write operations are implied by the registry's read-only framing, so there are no significant dead ends for agent workflows.
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 readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds that the result includes 'artifact + routing-surface status,' which is useful context, but it does not disclose behaviors like not-found handling, authentication, or limits beyond what annotations already imply.
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 one short sentence with no filler. The core action and identifier are front-loaded, and the additional context about artifact and routing-surface status is appended compactly without redundancy.
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 a single parameter, high schema coverage, an output schema, and safety annotations, the description covers the essential information an agent needs. It falls just short of complete by not explicitly positioning itself relative to list_guides, but the low complexity makes this a minor gap.
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 single required parameter 'slug' is already described in the schema, including an example. The description only repeats 'by slug' without adding extra semantic meaning or edge-case guidance, so it neither hurts nor significantly improves on 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 states a specific verb ('get'), a specific resource ('one guide's registry row'), and the key identifier ('by slug'). It also distinguishes this tool from list_guides by emphasizing the singular 'one' versus the sibling's plural listing behavior.
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?
Use is implied: you need a slug and want one guide's registry row, not a list. However, there is no explicit mention of when to prefer this over list_guides or what to do when the slug does not exist, leaving the routing somewhat implicit.
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?
Annotations already signal read-only and non-destructive behavior. The description adds a valuable interpretive rule: 'ksao_type/canon_component_id are null by design where unresolved — treat null as not yet joined, never as no link.' This goes beyond the schema and prevents a likely misinterpretation of results. No contradiction with 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each earning its place: the core purpose, the key filter recipes, and the critical null-meaning caveat. The description is front-loaded with the traversal statement and contains no filler or redundancy.
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 complex 12-parameter traversal tool, the description provides the essential navigational patterns and the most important interpretation trap. The advanced filters such as conflicting, construct_class, and canon_promotion_candidate are left to the detailed schema, which is acceptable given the rich schema and output schema. An agent has enough context to select and invoke the tool 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 input schema covers all 12 parameters at 100% with detailed, meaningful descriptions, so the description does not need to re-explain each parameter. The description does add example usage patterns, but these largely restate what the schema already conveys. Baseline 3 is appropriate when the schema does the heavy lifting.
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 action: 'Traverse the capability spine joining books, guides (capability packages), KSAO-grade elements and jobs.' It identifies the resource and the relationships it navigates. It does not explicitly name sibling tools, but the traversal framing and the mention of packages, elements, and jobs distinguish it from a plain list or taxonomy fetch.
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 provides concrete, parameter-driven usage guidance: '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.' This tells an agent which filter to reach for in common scenarios. It does not explicitly discuss when not to use the tool or alternatives, so it stops short of a 5.
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 and destructiveHint=false, establishing that this is a safe read operation. The description adds genuinely useful behavioral scope beyond that: the output includes the distribution roll-up and explicitly includes guides homed to properties with no rendering surface, which is a non-obvious inclusion criterion.
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 well-structured sentence that front-loads the tool's main action and resource, then adds the most valuable output details. No filler or redundancy; every clause earns its place.
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 rich 100%-covered input schema, existing output schema, and safety annotations, the description provides enough context: what the tool lists, what special cases are included, and the overall registry scope. It does not need to restate filters or return shapes because those are already carried by the structured metadata.
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%, with each of the 13 parameters already carrying descriptive meaning and examples, so the schema does the heavy lifting. The description adds no parameter-level semantics, which is acceptable at the baseline 3 since it need not duplicate 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 names a specific verb ('List') and resource ('bicycle.guide registry') and enumerates what the result contains: home, status, access, standard, syndication, grounding, and the distribution roll-up. The registry framing clearly separates it from the singular get_guide and from list_capabilities/list_taxonomy by signaling a full-registry listing.
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 implies a listing/registry use case and hints at scope by mentioning the distribution roll-up, but it does not explicitly state when to prefer this over list_capabilities or list_taxonomy, nor does it give exclusions. The extensive filter list in the schema implies usage, but the description itself stops at implied context.
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 valuable behavioral context beyond annotations: it returns machine-readable data rather than prose, includes live guide counts for shelves, and exposes classification conventions. No contradictions 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 immediately names the resource and then efficiently lists the taxonomy components. Every phrase earns its place; there is no filler or repetition of the title or schema.
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 parameterless, read-only taxonomy-listing tool with an output schema and safety annotations, the description is complete. It enumerates all returned vocabulary categories and clarifies the machine-readable nature of the result, leaving nothing ambiguous for an agent deciding whether and how to invoke it.
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 schema description coverage is 100%, so there are no parameter semantics for the description to add. Baseline 4 is appropriate since the description instead clarifies the output vocabulary, which is the only relevant semantic content for a no-argument tool.
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 ('Get') and resource ('bicycle.guide vocabulary') and enumerates the exact contents: domains, shelves, series, personas, guide_types, and classification conventions. This clearly distinguishes it from siblings like list_guides and list_capabilities by naming the taxonomy resource rather than the guides or capabilities themselves.
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 implies the tool is for retrieving the guide program's vocabulary as machine-readable data, but it does not explicitly state when to use this over list_guides, list_capabilities, or get_guide. There is clear context about what it returns, but no exclusions or alternative-routing 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