Skip to main content
Glama
duynghien

n8n-custom-mcp

by duynghien

search_templates

Search the n8n.io template library for workflow templates using keywords and category filters to find ready-made automation solutions.

Instructions

Search n8n.io template library for workflow templates

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesSearch query (e.g., "github slack", "customer onboarding")
categoryNoFilter by category (e.g., "Development", "Marketing")

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.2.1

TDQS

B3.3/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only restates the search action without mentioning that this is a read-only operation, what the results contain, whether pagination or rate limits apply, or that the search accesses an external n8n.io endpoint.

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 a single, efficient sentence with no filler. The verb and resource are front-loaded, and every word contributes to the purpose.

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

Completeness3/5

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

For a simple two-parameter search tool with a fully documented schema, this is minimally adequate. However, with no output schema, the description does not mention what a search result looks like, whether results are paginated, or that get_template_details can be used to fetch full template information — information an agent would likely need to use the tool effectively.

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 100%, and both parameters already include useful examples ('github slack', 'Development'). The tool description adds no parameter-level meaning beyond contextualizing the search target as the n8n.io template library, so the baseline of 3 applies.

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?

States a specific action ('Search') and a specific resource ('n8n.io template library') with a clear object ('workflow templates'). This distinguishes it from siblings like get_template_details, which retrieve details of an already-identified template, and list_workflows, which operates on user workflows.

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

Usage Guidelines2/5

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

The description gives no guidance on when to use this tool versus alternatives such as get_template_details or import_template, and it does not state when not to use it. Usage context is only implied by the tool name and brief description.

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