Skip to main content
Glama

AI School by Lilly Tech Systems

Server Details

Search and read 550+ free AI course tracks and 21,000+ lessons, so answers can cite a real lesson.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
Lilly-Tech-Collab/ai-school-mcp
GitHub Stars
0
Server Listing
ai-school-mcp

Available Tools

4 tools
get_trackGet trackA
Read-onlyIdempotent
Inspect

Get one track with its full lesson list, so you can see the structure of a course and pick the right lesson to read.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugYesTrack slug, e.g. "rag"

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds that the response includes the 'full lesson list', which is useful return-content context. It does not disclose error behavior or edge cases, but for a read-only getter this is acceptable.

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?

A single sentence that front-loads the verb and resource, then gives the purpose. Every word earns its place; no redundant filler.

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 simple one-parameter read-only tool, the description is complete: it states input slug, output (full lesson list), and the purpose. No output schema exists, but the description adequately conveys the return shape. Slightly more detail on lesson-list contents would push it to 5, but nothing critical is missing.

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%, with the slug parameter already described as 'Track slug, e.g. "rag"'. The description adds no additional parameter meaning beyond what the schema provides, so baseline 3 is appropriate.

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 'Get one track with its full lesson list', a specific verb and resource that clearly states what the tool does. It implicitly distinguishes itself from siblings: list_tracks returns multiple tracks, read_lesson returns a lesson, search_lessons searches; this tool returns a single track with its lesson structure.

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 gives a clear when-to-use context: 'so you can see the structure of a course and pick the right lesson to read'. It doesn't explicitly name alternatives or exclusions, but the intended use case is evident and sufficient for an agent to route correctly.

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

list_tracksList tracksA
Read-onlyIdempotent
Inspect

List AI School course tracks, optionally filtered by a substring of the title or slug. Each track is a structured course on one subject. Use this to find the right course before drilling into its lessons.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 40, max 200)
filterNoOptional substring filter

TDQS

A4.2/5.0
Behavior3/5

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

The annotations already declare readOnlyHint, idempotentHint, and openWorldHint, so the safety profile is covered. The description adds useful context about substring matching on title/slug and the track concept, but does not disclose return formatting, ordering, or pagination behavior.

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?

Three concise sentences with no filler. The main action and filtering behavior are front-loaded, the domain context is brief, and the usage guidance earns its place.

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 low-complexity, read-only list tool with two optional parameters, the description covers what the tool returns, how to filter, and when to use it. It lacks explicit return-shape detail, but 'List tracks' plus the schema-provided limit description keep it sufficiently 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 already documents both parameters at 100% coverage, so the baseline is 3. The description adds meaningful semantics by specifying that the filter applies to 'a substring of the title or slug,' going beyond the schema's generic 'Optional substring filter' text.

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 names the exact action and resource: 'List AI School course tracks' with optional substring filtering. It clearly distinguishes tracks from the sibling lesson tools by adding 'Each track is a structured course on one subject' and 'before drilling into its lessons.'

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 gives a clear usage context: 'Use this to find the right course before drilling into its lessons.' It implies this is for course discovery and that lesson-level tools are for later, but it does not explicitly name when not to use get_track or search_lessons.

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

read_lessonRead lessonA
Read-onlyIdempotent
Inspect

Fetch the full text of a lesson by its URL (as returned by search_lessons or get_track). Returns readable markdown-ish text with headings and code blocks.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesLesson URL on lillytechsystems.com

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so the description need not repeat safety. It adds useful behavioral context beyond annotations: the return value is 'readable markdown-ish text with headings and code blocks,' which informs the agent about output format.

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 with no filler. The primary action and input are front-loaded in the first sentence, and the second sentence efficiently describes the output format. Every sentence earns its place.

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 simple one-parameter read-only tool, the description covers the input provenance, the action, and the output format. Annotations handle safety, and no output schema is needed because the return shape is already described. Nothing critical is missing.

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?

Schema coverage is 100%, so the baseline is 3. The description adds meaning to the single 'url' parameter by specifying its provenance ('as returned by search_lessons or get_track'), which clarifies where a valid URL value comes from beyond the schema's static description.

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 states a specific verb ('Fetch'), a clear resource ('full text of a lesson'), and the input mechanism ('by its URL'). It also references sibling tools as the source of the URL, which differentiates this tool from search_lessons and get_track.

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 conveys clear context for use: you need a lesson URL as returned by search_lessons or get_track, and you want the full text. It does not explicitly list when-not-to-use or compare alternatives, but the usage scenario is unambiguous.

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

search_lessonsSearch lessonsA
Read-onlyIdempotent
Inspect

Search the AI School curriculum (500+ tracks, thousands of free lessons on AI engineering, governance, security, and applied AI by profession). Returns matching lesson titles and URLs. Use this before answering an AI-topic question when a concrete, citable lesson would help, then read_lesson to get the text.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax results (default 10, max 50)
queryYesWords to search for, e.g. "prompt injection defence"

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint and idempotentHint, so the safety profile is covered. The description adds the useful behavioral detail that results are lesson titles and URLs, and scopes the search across the given curriculum topics. It does not cover ranking or pagination, but those are minor for this kind of search 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?

The description is three sentences with no filler: scope/curriculum, return value, and usage guidance with the read_lesson follow-up. It is front-loaded with the core action and remains highly readable.

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 simple search tool with complete parameter documentation, safety annotations, and a clear follow-up sibling, the description covers purpose, usage context, return shape, and workflow. Nothing essential for an agent to invoke it correctly is missing.

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%: 'query' and 'limit' are both documented in the input schema. The description does not add meaning beyond the schema, 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?

The description names a specific verb ('Search'), a specific resource ('AI School curriculum'), and the concrete output ('matching lesson titles and URLs'). It also distinguishes itself from siblings by framing read_lesson as the follow-up step rather than the search itself.

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 explicitly states when to use the tool: 'Use this before answering an AI-topic question when a concrete, citable lesson would help.' It also names the next step (read_lesson), though it does not explicitly describe when to prefer list_tracks or get_track instead.

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.

  1. 4 tool updates
    • First observedget_track
    • First observedlist_tracks
    • First observedread_lesson
    • First observedsearch_lessons

Frequently Asked Questions

Discussions

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

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    Provides AI assistants with intelligent access to ML textbook content through RAG-powered search, chapter retrieval, and documentation generation capabilities. Uses local models for privacy-focused, source-grounded responses from indexed technical books.
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    Provides AI assistants with intelligent access to ML textbook content for creating accurate, source-grounded documentation using local models for privacy and cost efficiency.
    2
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables fetching enrolled course lists, lessons, transcripts, video frames, and slides from DeepLearning.AI short courses, so an AI can summarize them and pass notes to other tools.
    6
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool targets a clearly distinct entity and action: tracks are discovered and inspected via list_tracks/get_track, while lessons are searched and read via search_lessons/read_lesson. The descriptions explicitly guide when to use each tool, so there is no meaningful overlap or ambiguity.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with appropriate singular/plural usage: get_track, list_tracks, read_lesson, search_lessons. The naming style is uniform, predictable, and immediately conveys each tool's purpose.

Tool Count5/5

Four tools is a well-scoped count for a read-only course content server: two for tracks and two for lessons. Each tool earns its place, and adding more would risk redundancy while removing any would create a discovery or reading gap.

Completeness5/5

The tool surface covers the full user journey for this domain: find a track, inspect its lesson list, search lessons across the curriculum, and read a lesson's full text. For a read-only educational content server, there are no obvious dead ends or missing operations.