Skip to main content
Glama

Server Details

Search, browse, and cite a 377-tutorial step-by-step how-to corpus from your AI client.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 6 of 6 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: get_tutorial fetches a specific item, list_categories/ list_recent_tutorials/ list_tutorials_by_category handle different listing views, search_tutorials is free-text search, and request_tutorial is the only write operation. No two tools overlap in intent.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: get_ for single resource, list_ for collections, search_ for search, request_ for submission. The naming is uniform and predictable.

Tool Count5/5

Six tools is squarely in the ideal 3-15 range for a content-focused server. Each tool covers a distinct need (discover, browse, fetch, request) and none feel redundant or missing.

Completeness5/5

The domain is a tutorial discovery platform, and the surface covers the full consumer journey: browse by category or recency, search, fetch full details, and request missing content. No critical gaps exist; related tutorials are even provided within get_tutorial.

Available Tools

6 tools
get_tutorialAInspect

Fetch the full machine-readable rendition of a tutorial by slug: title, TL;DR, numbered steps (with text, imageUrl, tips, and YouTube videoTimestampSeconds for deep-linking), tools/materials, tags, related tutorial slugs, creator credit, recipe (with nutrition + cuisine when applicable), license, and canonicalUrl. Use this after search_tutorials to fetch step details.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesTutorial slug (e.g. 'how-to-fix-a-leaky-faucet')
Behavior4/5

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

With no annotations, the description carries the full burden. It thoroughly discloses the return structure including conditional fields like 'recipe (with nutrition + cuisine when applicable).' It does not mention errors or auth, but for a read-only fetch, the output detail is highly transparent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, both purposeful. The first sentence enumerates the rich return fields in a structured way, and the second provides direct usage guidance. No wasted words; front-loaded with the primary action.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no output schema and no annotations, the description compensates by enumerating all returned fields, including nested structures and conditional elements. Combined with clear usage guidance and a well-documented single parameter, it is fully complete for the tool's purpose.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema covers the single parameter with a clear description and example (100% coverage), so the baseline is 3. The description only repeats the concept of 'by slug' without adding extra meaning about the parameter itself.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description begins with a specific verb+resource: 'Fetch the full machine-readable rendition of a tutorial by slug.' It clearly distinguishes from siblings by detailing the full content payload, and the phrase 'Use this after search_tutorials' sets it apart from search and listing tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states 'Use this after search_tutorials to fetch step details,' which provides clear when-to-use guidance and names the alternative tool. This effectively implies that search_tutorials is for discovery and this tool is for retrieval.

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

list_categoriesAInspect

List all tutorial categories with a published tutorial. Returns slug, name, short description, and count of published tutorials per category.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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

With no annotations, the description discloses key behavioral details: it only returns categories that have at least one published tutorial, and includes a count. This conveys read-only intent and filtering behavior, which is sufficient for a simple list tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two succinct sentences, front-loaded with the action and scope, followed by return field details. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a no-parameter list tool, the description covers the output fields and the filtering criterion. It lacks explicit ordering/pagination details, but given the tool's simplicity and sibling context, it is adequately complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has zero parameters, so the baseline is 4. The description correctly omits parameter details, as there are none.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('List') and identifies the exact resource ('all tutorial categories with a published tutorial'). It also lists the returned fields, distinguishing it from sibling tools that focus on tutorials.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It clearly implies the use case: when you need category-level metadata. However, it does not explicitly name alternatives or specify when not to use it, though the tool name and description make the purpose self-evident.

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

list_recent_tutorialsAInspect

List the most recently published tutorials, newest first. Use this to discover what's new on the site or to surface fresh content for aggregator / 'what's new this week' agent loops. Tenant-aware.

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNoLookback window in days (default 14, max 90).
limitNo
Behavior3/5

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

No annotations are present, so the description carries the burden. It adds useful behavioral context like 'newest first' and 'Tenant-aware', but does not disclose the return format, whether full tutorials or summaries are returned, or potential limitations. This is adequate but with gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the core purpose and then provides usage guidance and a key behavioral note. Every sentence earns its place with no redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity, the description covers purpose, order, tenant awareness, and a usage scenario. The input schema documents the two optional parameters. However, without an output schema, the exact return shape (e.g., fields, pagination) is not clarified, leaving minor gaps for a fully self-contained definition.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 50%: 'days' is described, but 'limit' is not. The description does not add parameter-level guidance, though 'limit' is self-explanatory and 'days' is already documented. Since the description provides a recency context implying the 'days' parameter, it barely meets the baseline for moderate coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('List'), the resource ('most recently published tutorials'), and the ordering ('newest first'). It distinguishes itself from sibling tools like search_tutorials and list_tutorials_by_category by focusing on recency.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit positive use cases are provided: 'discover what's new on the site' and 'surface fresh content for aggregator / what's new this week agent loops.' It does not explicitly mention when not to use it or name alternative tools, but the context is clear enough.

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

list_tutorials_by_categoryAInspect

Browse tutorials within a specific category, ranked by view count then publish date. Use this when a user wants to explore a topic area rather than search.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
categorySlugYese.g. 'cooking', 'home-improvement', 'crafts'
Behavior3/5

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

No annotations are provided, so the description carries the burden. It discloses the ranking behavior (view count then publish date) and implies a read-only browse operation, but lacks details on pagination, return format, or auth requirements.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, front-loaded with purpose and ranking, followed by usage guidance. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple tool (2 params, no output schema, no nested objects), the description covers purpose and usage. The ranking detail is a key behavior. It could mention pagination or limits but is generally complete for a listing tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 50%: categorySlug has examples in the schema, limit has constraints but no description. The description does not add parameter-level meaning, but the schema provides sufficient context for both arguments.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'Browse' with a clear resource ('tutorials within a specific category') and adds ranking details. It distinguishes from search_tutorials by stating 'rather than search'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use: 'when a user wants to explore a topic area rather than search'. Provides clear context but does not name alternative tools directly.

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

request_tutorialAInspect

Submit a request for a tutorial we don't yet have. Call this when search_tutorials returned no good match for what the user actually wants. The request enters our content-demand queue, which the daily content batch reviews and prioritizes. Optionally include an email for notification when the tutorial ships.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesWhat the user wants to learn how to do (e.g. 'how to get pesto stains out of a white shirt')
contextNoBrief context about the requester (e.g. 'beginner crocheter', 'first-time homeowner', 'gluten-free baker'). Helps shape the tutorial when we ship it.
notifyEmailNoOptional email to notify when the tutorial ships. Pure opt-in.
originalQueryNoThe exact user query that came up empty in search_tutorials. Useful for matching keyword demand.
Behavior4/5

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

With no annotations, the description carries the transparency burden. It discloses key behavioral aspects: the request enters a content-demand queue, is reviewed daily, and optionally triggers an email notification. It doesn't describe the response format or failure modes, but for a simple submission tool, the disclosed behavior is sufficient and adds context beyond the operation name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences with the purpose first, followed by usage context and optional behavior. Every sentence earns its place; there is no redundant or vague wording. It is tightly structured and scannable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description explains the request lifecycle (queue and daily review) and the optional notification, which covers the core context. The input schema documents all parameters, so no return-value explanation is needed since there is no output schema. It is complete enough for an agent to correctly invoke the tool without ambiguity, though the response/confirmation behavior is not mentioned.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the parameters are fully documented individually. The description aligns with the schema by mentioning the optional email notification, but it doesn't add new meaning beyond what the schema already provides. The baseline of 3 is appropriate; the description doesn't compensate further for parameter-specific semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Submit') and resource ('a request for a tutorial we don't yet have'). It explicitly distinguishes itself from sibling tools by specifying the trigger condition (search_tutorials returned no good match), making its purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit when-to-use guidance: 'Call this when search_tutorials returned no good match for what the user actually wants.' It also explains the downstream process (content-demand queue, daily review), which helps the agent understand the tool's role in the overall workflow, though it doesn't list explicit 'when not to use' scenarios beyond the condition.

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

search_tutorialsAInspect

Search the ShowMeStepByStep tutorial corpus by free-text query. Searches across tutorial titles, descriptions, and step content. Returns slim summaries with TL;DRs and canonical URLs. Tenant-aware. Optional filters narrow by category, difficulty, or maximum duration.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYesSearch query (>= 2 chars)
difficultyNoOptional difficulty filter.
categorySlugNoOptional category to restrict the search to (e.g. 'cooking', 'crochet'). Use list_categories to see available slugs.
maxDurationMinutesNoOptional ceiling on tutorial total duration. Useful for 'quick recipes' / 'under 10 min' queries.
Behavior4/5

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

With no annotations provided, the description carries the full burden. It discloses the search scope, return format ('slim summaries with TL;DRs and canonical URLs'), tenant-awareness, and optional filters. It does not mention rate limits or auth, but the read-only nature is strongly implied by 'Search' and the return description is more specific than typical.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three sentences: the first establishes the core purpose, the second details search scope and return format, the third introduces filters. Each sentence earns its place, and the key verb+resource is front-loaded. No filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with 5 parameters, no output schema, and no annotations, the description covers the essential input/output contract: what the query matches, what results look like, and available filters. It lacks explicit details on result ordering/pagination and does not point to get_tutorial for full content, but overall it is sufficient for selecting and invoking the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema covers 80% of parameters (all but limit, which has self-documenting default/min/max). The description adds meaning beyond the schema by clarifying that the query matches titles, descriptions, and step content, and by giving a concrete use case for maxDurationMinutes ('quick recipes' / 'under 10 min'). This enriches the schema without redundancy.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with an explicit verb and resource: 'Search the ShowMeStepByStep tutorial corpus by free-text query.' It further specifies the search scope ('titles, descriptions, and step content') and distinguishes itself from sibling listing tools (e.g., list_tutorials_by_category, list_recent_tutorials) by focusing on free-text search across content.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context for use: it is for free-text search, returns slim summaries (implying use get_tutorial for full details), and supports optional filters. However, it does not explicitly name alternatives or state when not to use this tool, so it stops short of full exclusionary guidance.

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

Discussions

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

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources