journeyman
Server Details
Read-only Pattern-Assist corpus for aspiring software engineers: grounded dev patterns with sources.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
TDQS
Each tool has a clearly distinct purpose: get_pattern retrieves a single record by ID, list_patterns provides paginated inventory, search_patterns performs ranked lexical search, and list_public_pages exposes host site/endpoint discovery. There is no meaningful overlap or risk of selecting the wrong tool.
All tool names follow the same verb_noun snake_case convention: get_pattern, list_patterns, list_public_pages, and search_patterns. The pattern is predictable and immediately conveys what each tool does.
Four tools is a compact, well-scoped surface for a read-only pattern lookup and discovery server. Each tool earns its place and none feel redundant or missing.
The domain is a vendored, read-only pattern corpus, and the tool set covers the essential operations: search, list, and get by ID. The addition of list_public_pages supports host-level navigation, so there are no obvious dead ends or missing operations.
Available Tools
4 toolsget_patternGet one corpus pattern by idARead-onlyInspect
Lookup a single Pattern-Assist row by stable id. Returns 404-shaped payload when unknown — never fabricates a nearest match.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Pattern id, e.g. devplane-P02. |
Output Schema
| Name | Required | Description |
|---|---|---|
| code | No | |
| error | No | |
| pattern | No | |
| contract | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, openWorldHint=false, and destructiveHint=false. The description adds valuable behavior beyond annotations: it returns a 404-shaped payload when the id is unknown and never fabricates a nearest match, which helps an agent understand failure semantics.
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 two tight sentences with no filler. The core lookup behavior is front-loaded, and the beneficial failure-mode detail is added in the second sentence 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?
With one well-documented parameter, an output schema present, and annotations covering safety, the description provides sufficient context. The 404 behavior and no-fabrication guarantee cover the key edge case an agent would care about when invoking this tool.
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% for the single required 'id' parameter, including an example ('devplane-P02'). The description reinforces that the id is stable but does not add meaning beyond what the schema already provides, so baseline 3 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 a specific verb ('Lookup') and clearly identifies the resource ('a single Pattern-Assist row by stable id'). It also differentiates this tool from siblings like list_patterns and search_patterns by emphasizing single-row, id-based lookup.
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 clearly implies this tool is for retrieving a specific row when the stable id is known, versus listing or searching. It does not explicitly name alternatives or state when not to use it, but the intended use context is unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_patternsList corpus patterns (paginated)ARead-onlyInspect
Paginated inventory of pattern ids and summaries from the vendored corpus.
| Name | Required | Description | Default |
|---|---|---|---|
| area | No | ||
| limit | No | ||
| offset | No | ||
| provenance | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| total | Yes | |
| contract | Yes | |
| patterns | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and destructiveHint=false, so the safety profile is established. The description adds that results are paginated and limited to ids and summaries, but does not disclose ordering, filtering behavior, or pagination defaults, which are relevant 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single focused sentence with no wasted words. The key information—paginated, pattern ids and summaries, vendored corpus—is front-loaded and sufficient for a first-pass understanding.
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?
Basic invocation is clear, and the output schema plus annotations cover return shape and safety. However, the optional filtering parameters are left unexplained, and there is no guidance about pagination behavior or how this listing relates to the sibling search tool, leaving some gaps for an agent deciding how to query.
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 0%, so the description carries the burden of explaining parameters, but it only hints at limit/offset through 'paginated.' The area and provenance filters are not mentioned at all, and no additional meaning is added to the parameter names beyond what the schema already shows.
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 action ('Paginated inventory') and a specific resource ('pattern ids and summaries from the vendored corpus'). This distinguishes it from siblings like get_pattern (single item), search_patterns (searching), and list_public_pages (public pages).
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 conveys that this is the tool for enumerating all vendored corpus patterns, but it does not explicitly say when to prefer it over search_patterns or get_pattern. Usage context is implied by 'inventory' and 'paginated', but no alternative routing or exclusion conditions are stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_public_pagesList Journeyman public pages and machine endpointsARead-onlyInspect
Site map for agents: canonical human pages plus read-only REST/MCP endpoints on this host.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| site | No | |
| pages | Yes | |
| contract | Yes | |
| endpoints | Yes |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false; the description adds useful scope and content context by specifying that the result is a site map of canonical human-pages and REST/MCP endpoints confined to 'this host.' It does not overpromise side effects, and there is 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?
The description is a single front-loaded sentence with no filler. Every phrase adds meaning: audience ('agents'), resource type ('canonical human pages'), endpoint type ('read-only REST/MCP endpoints'), and scope ('on this host').
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 zero-parameter read-only list role, the output schema, and the safety annotations, the description provides enough context for correct invocation. It clarifies what will be returned (pages and endpoints) and where (this host), leaving no significant operational gaps.
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?
There are zero parameters and schema coverage is 100%, so the schema is complete. Per the 0-parameter baseline, the description needs no additional parameter guidance, and the no-arguments call is self-evident from the empty input 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 concrete resource—'canonical human pages plus read-only REST/MCP endpoints on this host'—with a clear listing verb and host scope. This distinguishes it from sibling pattern tools (get_pattern, list_patterns, search_patterns) by content domain (pages/endpoints vs patterns).
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?
'Site map for agents' implies this is the discovery/orientation tool, which gives context for when to call it. However, it never explicitly says when to use this over list_patterns/search_patterns or when not to use it, so an agent must infer the boundary from the tool name and sibling names.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_patternsSearch grounded software-engineering patternsARead-onlyInspect
Lexical search over the vendored Pattern-Assist corpus. Returns ranked patterns with source_ref citations and optional when_not guidance. Use this before asserting an approach.
| Name | Required | Description | Default |
|---|---|---|---|
| area | No | Optional area substring filter. | |
| limit | No | Max hits (default 10). | |
| query | Yes | Natural-language or keyword query. | |
| provenance | No | Optional provenance filter. |
Output Schema
| Name | Required | Description |
|---|---|---|
| count | Yes | |
| query | Yes | |
| contract | Yes | |
| patterns | Yes | |
| _citation | No |
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 behavioral context: it is a lexical (not semantic) search, and results include ranking, source_ref citations, and optional when_not guidance.
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?
Two sentences with no filler. The first sentence states what the tool does and returns, and the second gives practical placement guidance. Every word 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?
For a read-only search tool with full schema coverage, an output schema, and annotations already covering safety, the description is complete. It explains the corpus, result shape, and when to use 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?
Schema description coverage is 100%, so parameters are already fully documented. The description does not add additional meaning to the parameters themselves, but it does not need to because the schema handles that burden.
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 and resource: 'Lexical search over the vendored Pattern-Assist corpus.' It also states what is returned ('ranked patterns with source_ref citations'), which clearly distinguishes it from the sibling tools get_pattern and list_patterns.
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 gives clear usage context: 'Use this before asserting an approach.' It does not explicitly name alternatives or when-not-to-use conditions, but the intended role in the workflow is unambiguous.
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_pattern - First observed
list_patterns - First observed
list_public_pages - First observed
search_patterns
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 tools over the Safer Agentic AI framework: 238 patterns + 14 heuristics.
Read-only EngineerPro engineering library (118 book profiles) and software-engineering tools.
1Agent-design pattern guidance via 5 hosted read-only tools; Streamable HTTP, no auth, one Release.
Knowledge accumulation for AI coding agents. Records decisions, problems, and insights as context.
Related MCP Servers
- AlicenseAqualityBmaintenanceEnables AI coding agents to make evidence-aware design-pattern decisions by analyzing cases, comparing options, detecting misuse, stress-testing assumptions, planning adoption, writing ADRs, and generating evidence plans with transparent scoring.280MIT
- AlicenseAqualityDmaintenanceProvides design pattern templates and anti-pattern guidance to AI coding agents for correct pattern implementation.2MIT
- AlicenseNot gradedqualityAmaintenanceLocal-first evidence-backed repository memory for coding agents, providing read-only tools to list concepts, explain them, get governed context packs, and verify claims against the codebase.11Apache 2.0
- AlicenseNot gradedqualityBmaintenanceExposes the 23 Gang of Four design patterns to AI coding agents for generation, canonical examples, AST-based detection, validation, and anti-pattern refactoring in Python codebases.MIT