Skip to main content
Glama

search_course_content

Find relevant text within one Ufora course by querying its overview, module bodies, topics, and descriptions. Use it to locate specific course material without scanning every section manually.

Instructions

Search Course Overview, module bodies, topics, and descriptions for one course.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
queryYes
courseYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/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 behavioral burden. Search implies a read-only operation, but nothing is said about result volume, the role of the limit parameter, ordering, or what happens when a query matches nothing — all relevant for a tool with no 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.

Conciseness4/5

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

A single efficient sentence with the scope front-loaded and no filler. It is concise, though arguably under-specified rather than optimally dense.

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

Completeness2/5

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

With no annotations, no output schema, and 0% parameter documentation, the description should do more. It omits course identifier format, pagination via limit, and return-shape expectations, leaving the agent to guess at core invocation details.

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

Parameters2/5

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

Schema description coverage is 0% across all three parameters, so the description must compensate. It only hints that 'course' is a single course identifier; the query matching semantics and the limit/pagination behavior are entirely undocumented in both schema and description.

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

Purpose4/5

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

The description states a specific verb (Search) and enumerates the resource scope: Course Overview, module bodies, topics, and descriptions, constrained to one course. This distinguishes it reasonably well from retrieval siblings like get_course_content and read_course_material, though it never explicitly names the distinction.

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?

There is no guidance on when to use this search tool versus get_course_content, get_course_overview, or read_course_material. The one-course constraint is implied but no conditions, prerequisites, or alternatives are given.

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