Skip to main content
Glama
dkfmaekdnjfk

alt-festival-mcp

by dkfmaekdnjfk

Get Alt note transcript (incremental)

get_note_transcript

Fetch only new transcript entries since a given index to stay current with a live Alt note. Pass the previous totalEntries to avoid resending read content, reducing token usage.

Instructions

노트의 실시간 전사를 가져옵니다. 강의를 계속 따라가려면 매번 sinceIndex에 지난 호출에서 받은 totalEntries 값을 넘겨서 새로 추가된 부분만 받으세요 — 이미 읽은 내용을 다시 보내지 않아 토큰을 절약합니다. 처음 호출할 때는 sinceIndex를 생략하거나 0으로 두세요.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteIdYesAlt 노트 ID
sinceIndexNo이전에 받은 totalEntries 값. 이 인덱스 이후의 새 구간만 반환됩니다.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral burden. It discloses the incremental cursor behavior, token-saving intent, and first-call semantics. It does not address read-only safety or possible side effects, but the core behavioral contract is clearly described.

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 short, focused sentences: purpose, incremental usage pattern, and initial-call handling. Every sentence earns its place and the most important usage detail is front-loaded.

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 tool has no output schema and no annotations, so the description must cover the operational loop, which it does by telling the caller to pass totalEntries from the last response. It is complete enough to call the tool correctly, though it does not describe the full response shape.

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 genuine value by explaining how sinceIndex relates to the previous call's totalEntries and how to handle the initial call, going beyond the schema's per-parameter descriptions.

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 tool retrieves the real-time transcript of a note, which is a specific verb+resource. The incremental nature is also explicit, and this distinguishes it from siblings like get_note_info or list_note_components.

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 excellent practical usage guidance: pass the previous totalEntries to sinceIndex to get only new content, and omit or set to 0 on first call. It does not explicitly mention when-not-to-use or name alternatives, so it stops short of a perfect 5.

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