Skip to main content
Glama

Server Details

Create narrated presentations from HTML, poll build status, list them, read one back as text.

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 ยท MCP 2025-11-25
URL

TDQS

A4/5.0

Scored across 19 tools

Disambiguation4/5

Nearly every tool maps to a distinct resource-action pair, and the long descriptions carefully disambiguate artifacts from presentations and read vs. list vs. thread operations. The only real overlap is publish_narrated_presentation, which is explicitly marked deprecated as an alternative to create_presentation.

Naming Consistency5/5

All tools use snake_case verb_noun naming (create_artifact, get_presentation_status, list_artifact_threads), with verbs consistently leading and resources consistently following. Minor differences like reply_to_artifact_thread and publish_narrated_presentation still fit the same predictable pattern.

Tool Count4/5

At 19 tools the surface is above the typical 3-15 range, but the server covers artifacts, artifact threads, presentations, analytics, and channels, so the count is only slightly heavy. The deprecated publish_narrated_presentation adds some padding, but the remaining tools each have a clear job.

Completeness3/5

Artifacts have full lifecycle coverage with create/get/update/delete/share plus threads, and presentations have create/list/status/context/analytics/spec. However, there is no update or delete operation for presentations and no broader channel management, leaving notable gaps for a presentation-focused server.

Available Tools

19 tools
create_artifactCreate an ArtifactAInspect

Publish an HTML page or a Markdown document as a Bisque Artifact: a persistent, versioned page at a stable URL that people can open, comment on, and that you can update later with update_artifact. Pass the whole document as content. The call waits for the page to be ready and returns its URL. It is private to you unless you pass audience or share_with. A page that should remember what people do on it (a checklist, a poll, a sign-up sheet) declares capabilities ['state.read','state.write'] and, when some paths need different access, state.rules; it then reads and writes JSON documents through window.bisque.state. For a narrated presentation use create_presentation instead.

ParametersJSON Schema
NameRequiredDescriptionDefault
iconNoAn emoji for the tab and listing, e.g. ๐Ÿ“Š.
typeNoDefault html.
stateNoWho may read and write which paths of the page's data, by the minimum role: viewer (can open), contributor (a data grant, separate from editing the page), owner. Absent means: everyone who can open reads, contributors and the owner write. Example poll: [{path:'votes',read:'viewer',write:'owner'},{path:'votes/{self}',write:'viewer'}].
titleYesA short name, the way a document or app is named.
listedNoShow it in listings (the org library, public discovery) rather than link-only. Default false.
contentYesThe full document. For html: a complete page (styles and scripts inline; it runs in a sandboxed frame with no network). For markdown: the Markdown source.
audienceNoWho can open the link. owner: only you. users: the people in share_with. public: anyone with the link.
share_withNoPeople to grant access by email (or uid), with a role. [{ "email": "ana@acme.com", "role": "viewer" }]. viewer opens it; editor can also publish new content. Implies audience "users" when audience is omitted.
descriptionNoOne sentence saying what the page is; shown in listings.
capabilitiesNoWhat the page may do at run time. state.read and state.write give it JSON documents at window.bisque.state (get, patch, list, subscribe); viewer.identity tells it who is viewing (window.bisque.viewer); events.emit lets it record typed Events. Omit for a page that only shows things.

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYesThe viewer page.
iconNo
typeYes
titleYes
group_idNo
created_atNo
updated_atNo
version_idYesThe Version this call authored.
artifact_idYes
descriptionNo
audience_modeYesWho can open it: owner, users, org, or public.
version_numberNo
discoverabilityYes
organization_idNo
latest_version_idNo
publication_errorNo
publication_statusYesready means the URL serves this content now. queued or processing means it is still being prepared; call get_artifact to check. failed carries publication_error.
viewer_version_modeNo
published_version_idYesThe Version viewers see; null until a publication is ready.

TDQS

A4.9/5.0
Behavior5/5

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

The description adds substantial behavior beyond the annotations: it waits for the page to be ready and returns its URL, it is private by default, pages are persistent and versioned, and pages with capabilities state.read/state.write interact with JSON documents via window.bisque.state. None of this contradicts the annotations, and the write nature is appropriately conveyed by 'Publish'.

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 compact paragraph with no filler. Core publish semantics come first, followed by privacy, the special state/capabilities case, and finally the sibling alternative. Every sentence earns its place and the most important decision cue is front-loaded.

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 tool with 10 parameters, nested objects, and an output schema, the description covers the essential decision points: what to pass, what happens at call time, privacy defaults, interactive-state behavior, and which sibling to choose instead. Since an output schema exists, not detailing the return shape is acceptable; the description even names the returned URL.

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 schema already documents every parameter. The description adds meaning beyond the schema by telling the agent to 'Pass the whole document as content', explaining the practical purpose of capabilities, and illuminating audience/share_with privacy semantics. It does not cover every parameter, but it doesn't need to given the exhaustive schema.

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 a specific verb and resource: 'Publish an HTML page or a Markdown document as a Bisque Artifact', and then characterizes the artifact as persistent, versioned, and stable-URL. It explicitly distinguishes itself from create_presentation and references update_artifact, so an agent can tell this tool apart from its siblings without opening schemas.

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?

It states when to use the tool for publishing HTML/Markdown documents and gives a clear exclusion: 'For a narrated presentation use create_presentation instead.' It also sketches when state capabilities and state.rules are needed for interactive pages, and how privacy behaves unless audience or share_with is passed.

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

create_artifact_threadStart a comment thread on an ArtifactAInspect

Leave a new comment thread on one of your Artifacts, as the agent. Without an anchor the thread is a general comment on the page. The thread is activated from the start, so you can reply to it and resolve it later. Mention a person with @Name using ids from the Artifact's mentionables.

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyYesMarkdown subset: bold, italic, code, links, lists.
anchorNoOptional pin. { kind: "page", slideId, slideIndex, timeSec } for a slide or time; { kind: "element", selector, xFrac, yFrac, snapshot: { tag, text }, slideId, slideIndex, cueTarget, timeSec } for an element; { kind: "text", quote, prefix, suffix, selector, slideId, slideIndex } for a passage.
artifact_idYesThe Artifact id (art_โ€ฆ).

Output Schema

ParametersJSON Schema
NameRequiredDescription
anchorYesWhere the thread is pinned: kind element (selector, snapshot, slide), text (quote), or page.
statusYes
previewYes
mentionsNo
messagesYes
thread_idYes
created_atYes
created_byYesWho wrote it: { kind: "user", uid, name, handle, avatarUrl } or { kind: "agent", principal, name, via }.
updated_atNo
version_idNo
artifact_idYes
resolved_atNo
participantsNo
message_countYes
version_numberYes
agent_activatedYesTrue once someone mentioned the agent; only then may the agent reply or resolve.
last_message_atYes
root_message_idNo

TDQS

A4.4/5.0
Behavior4/5

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

Beyond the annotations, which simply mark the operation as non-read-only and non-idempotent, the description adds meaningful behavioral detail: the comment is made 'as the agent', an unanchored thread becomes a general page comment, and the thread is immediately active. It also documents mention syntax, improving transparency about how the tool behaves.

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 each convey distinct useful information: the core action, the anchor behavior, and the thread lifecycle plus mention syntax. Nothing is redundant or padded.

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 nested anchor parameters and an output schema, the description is notably complete: it explains the main behavioral variants and the required body format. It could have explicitly listed which sibling tools handle replying or resolving, but those are already evident from the sibling names and the description's lifecycle note.

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 covers all parameters at 100%, providing a strong baseline. The description adds value by clarifying that omitting the anchor produces a general page comment and by giving explicit mention format instructions for the body parameter. This goes beyond the schema text without needing to repeat nested anchor details.

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 and resource: 'Leave a new comment thread on one of your Artifacts.' It also differentiates from siblings by emphasizing this is a new thread and by describing behaviors such as being 'activated from the start' and being reply/resolvable later.

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 clearly indicates the general use case and key decision points, such as whether an anchor is provided, and notes that the thread can later be replied to or resolved. However, it does not explicitly name sibling tools like reply_to_artifact_thread or resolve_artifact_thread as the alternatives for those later actions, so the guidance stops short of fully explicit routing.

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

create_presentationCreate narrated presentationA
Destructive
Inspect

Generate a narrated presentation from an html-presentation/v1 document. BEFORE authoring, call get_presentation_spec and follow it exactly โ€” slides without its narration markup publish SILENT. Returns a presentationId and the watch URL. Narration runs in the background and the inline player tracks it on its own, so reply to the user as soon as this returns and do not call get_presentation_status unless the user asks whether it is done.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugNoURL slug; defaults to a slugified title.
audioNoOptional. One entry per slide YOU narrated, from the JSON `bisque-voice` prints โ€” word timings, duration, size and digest. Send it and your audio is used (free, unlimited, any OS); leave it out and the server narrates. The response says how many slides speak, and names any that published silent.
titleNoDisplay title for the watch page and listings. Omit to use the title parsed from the document.
assetsNoFiles the document references relative to itself โ€” fonts, images, Lottie/Rive animations, sound-effect audio, video clips. The SERVER fetches each https url at create time and stores it in the bundle, so reference `assets/...` paths in your HTML and list the sources here instead of inlining base64. 10MB per asset, 30MB total.
dryRunNoSandbox: run every check a real create runs (format, slug and org conflicts, tier cap, credit preflight) and write nothing. The reply has status "validated" and the webUrl a real create would publish at. Use it to test an integration without touching the channel.
handleNoPublish under a specific channel handle you own.
voiceIdNoNarration voice. ElevenLabs: a bare id or cloud:<id>. Self-hosted Kokoro: kokoro:<id> (e.g. kokoro:af_heart); local:<id> is accepted as a synonym. Omit to use the voice saved on the account (bisque.cloud/account), falling back to the server default.
designMdNoDesign frontmatter mapped to theme tokens.
madeWithNoCredit the models that made this: the model you are running as, and the narration engine or voice service if you know it โ€” e.g. ["Claude Opus 5", "Kokoro af_heart"]. Shown to viewers in the watch page's โ‹ฏ menu. Send it on every create; omitting it keeps whatever a previous publish recorded.
contextMdNoShared-with-viewer context.md.
indexHtmlYesFull html-presentation/v1 document (the presentation-format meta gate applies).
visibilityNounlisted (the default) is shareable by link and plays in chat-embedded players; private requires the owner to sign in, so an inline chat player shows a sign-in wall instead of playing โ€” choose private only when the user asked for it.unlisted
speechSpeedNoNarration speed multiplier passed to the voice. Omit for the server default.
presentationIdNoStable id for idempotent re-creates; defaults to slug-<hash(userId:slug)>.
voiceStabilityNoVoice stability setting passed to the narration engine. Omit for the server default.

Output Schema

ParametersJSON Schema
NameRequiredDescription
statusYesready = nothing needed narration; queued = narration runs in the background โ€” poll get_presentation_status.
webUrlYesShareable watch URL (live once status is ready).
narrationYes
statusUrlYes
presentationIdYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=false and destructiveHint=true, so the safety profile is known. The description adds genuinely useful behavior beyond that: narration runs in the background and tracks itself, the silent-publish failure mode when the spec is ignored, and the expected response timing ('reply to the user as soon as this returns'). No contradiction with annotations. Slightly more could be said about the idempotency nuance hinted at by presentationId, but the disclosure is strong.

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?

Three sentences, each earning its place: purpose in the first, the critical precondition in the second, async behavior and response guidance in the third. Dense but well-ordered and front-loaded. Loses a point only because the packed second/third sentences could be marginally clearer with line breaks.

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 15-parameter tool with a rich schema and an output schema present, the description addresses the real confusion points: the spec prerequisite, the status-polling temptation (get_presentation_status sibling), and the silent-publish failure mode. It doesn't enumerate return fields, but the output schema covers that, so nothing essential for correct invocation 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 coverage is 100%, so the baseline is 3. The description references the input document format (html-presentation/v1) and implies the spec precondition, but doesn't add parameter-level meaning beyond what the schema already documents in detail. This is acceptable given the schema carries the heavy lifting.

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 and resource โ€” 'Generate a narrated presentation from an html-presentation/v1 document' โ€” with the input format named explicitly. It distinguishes from siblings like publish_narrated_presentation (publishing vs creating) and get_presentation_status (checking vs creating), so an agent can pick it without opening schemas.

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?

Provides explicit sequencing: 'BEFORE authoring, call get_presentation_spec and follow it exactly' โ€” a hard precondition with a concrete failure consequence ('publish SILENT'). It also names the alternative it should NOT call ('do not call get_presentation_status unless the user asks whether it is done'), giving both when-to and when-not-to guidance.

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

delete_artifactDelete an ArtifactA
DestructiveIdempotent
Inspect

Delete an Artifact you own. Its URL stops working for everyone. Confirm with the user before calling this.

ParametersJSON Schema
NameRequiredDescriptionDefault
artifact_idYesThe Artifact id (art_โ€ฆ).

Output Schema

ParametersJSON Schema
NameRequiredDescription
deletedYes
artifact_idYes
already_deletedNo

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the annotations (destructiveHint, idempotentHint), the description adds valuable behavioral context: the URL stops working for everyone, and the agent must confirm with the user before invoking. This significantly clarifies the impact and safety expectations.

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 concise sentences front-load the action and consequence, followed by the critical user-confirmation requirement. Every word earns its place with no unnecessary filler.

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 single-parameter destructive tool with a robust schema and annotations, the description covers ownership, global impact, and confirmation. The presence of an output schema means return-value details are unnecessary here.

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%, so the artifact_id parameter is already well documented in the schema. The tool description does not add parameter-specific details, but none are needed given the complete schema.

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 the exact action ('Delete an Artifact'), the resource type, and adds the ownership constraint ('you own'), which distinguishes it from sharing, updating, or listing artifacts. It is clear and specific.

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 clear context for when to call it: only for an artifact the user owns, and only after user confirmation. It does not explicitly name alternatives or exclusions, but the destructive nature makes the intended use clear.

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

get_artifactGet an ArtifactA
Read-onlyIdempotent
Inspect

Read one Artifact: title, who can open it, the Version viewers see (published_version_id, null while a publication is still being prepared), and its URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
artifact_idYesThe Artifact id (art_โ€ฆ).

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYesThe viewer page.
iconNo
typeYes
titleYes
group_idNo
created_atNo
updated_atNo
artifact_idYes
descriptionNo
audience_modeYesWho can open it: owner, users, org, or public.
discoverabilityYes
organization_idNo
latest_version_idNo
viewer_version_modeNo
published_version_idYesThe Version viewers see; null until a publication is ready.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered by structured data. The description adds useful behavioral context about the returned Version viewer state and the published_version_id null condition during publication preparation, which annotations do not convey.

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 front-loaded sentence states the core action first, then lists returned fields and a key nuanced edge case. Every clause earns its place with no filler or redundancy.

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?

This is a simple single-parameter read operation with complete schema documentation, rich annotations, and an output schema. The description covers the tool's purpose, primary return fields, and an important publication-state nuance, leaving no critical gap for an agent to call it correctly.

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 artifact_id is already well-documented with a pattern and example. The description does not add additional parameter-level meaning beyond restating that it reads one Artifact, so it meets the baseline but does not exceed it.

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 the specific verb 'Read' and the singular resource 'one Artifact', making the tool's scope immediately clear. It also enumerates the returned fields (title, access, published_version_id, URL), which distinguishes it from sibling tools like list_artifacts and get_artifact_thread.

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?

'Read one Artifact' provides clear context that this is the single-item read tool, contrasting with list_artifacts for multiple items. It does not explicitly name the alternative or state when not to use it, so it stops short of a 5.

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

get_artifact_threadGet an Artifact comment threadA
Read-onlyIdempotent
Inspect

Read one comment thread on an Artifact with every message, oldest first. Mentions in a body look like @Name; a mention of the agent is @Agent.

ParametersJSON Schema
NameRequiredDescriptionDefault
thread_idYesThe thread id (thr_โ€ฆ).
artifact_idYesThe Artifact id (art_โ€ฆ).

Output Schema

ParametersJSON Schema
NameRequiredDescription
anchorYesWhere the thread is pinned: kind element (selector, snapshot, slide), text (quote), or page.
statusYes
previewYes
mentionsNo
messagesYes
thread_idYes
created_atYes
created_byYesWho wrote it: { kind: "user", uid, name, handle, avatarUrl } or { kind: "agent", principal, name, via }.
updated_atNo
version_idNo
artifact_idYes
resolved_atNo
participantsNo
message_countYes
version_numberYes
agent_activatedYesTrue once someone mentioned the agent; only then may the agent reply or resolve.
last_message_atYes
root_message_idNo

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already establish this as read-only, idempotent, and non-destructive. The description adds useful behavioral detail beyond that: it returns every message in oldest-first order and explains the mention syntax format present in message bodies.

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 short sentences with no filler. The first sentence establishes the core behavior and ordering, and the second provides essential content-format context, so 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 read-only tool with two fully documented parameters, rich annotations, and an output schema, the description is complete. It covers what the tool returns, the ordering, and the special mention syntax the agent may need to interpret the response.

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 input schema already fully documents both parameters with descriptions and patterns, so the 100% schema coverage supports the baseline score. The description adds context about mention formatting but does not add new parameter-level meaning beyond the schema.

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 ('Read'), identifies the exact resource ('one comment thread on an Artifact'), and specifies scope ('one thread'). It is clearly distinguishable from sibling tools like list_artifact_threads, create_artifact_thread, and reply_to_artifact_thread.

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 clearly conveys this tool is for reading a single full thread, which implies the appropriate use case versus listing or modifying threads. However, it does not explicitly name alternatives or state when not to use the tool.

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

get_presentation_analyticsGet presentation analyticsA
Read-onlyIdempotent
Inspect

Watch analytics for one of your presentations: views, likes, completion rate, per-slide retention funnel, traffic sources, distinct signed-in/anonymous viewers, and organization email domains (personal providers filtered). Lets an agent read how its own published briefings performed.

ParametersJSON Schema
NameRequiredDescriptionDefault
presentationIdYesThe presentationId whose view counts and survey responses you want.

Output Schema

ParametersJSON Schema
NameRequiredDescription
slugYes
titleYes
webUrlNo
sourcesYesTraffic source โ†’ view count.
likeCountYes
viewCountYes
orgDomainsYesOrganization email domains of signed-in viewers (personal providers filtered), sorted desc.
slideReachYesRetention funnel ordered by slide index.
anonViewersYes
uniqueViewersYesDistinct signed-in viewers.
completedCountYes
completionRateYescompletedCount / viewCount, 0..1; null when no views.
presentationIdYes

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already flag read-only, idempotent, non-destructive behavior, so the description doesn't need to restate those. It adds behavioral context beyond annotations by listing the metric categories, noting that personal email providers are filtered in the organization domains metric, and restricting scope to the agent's own published briefings.

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 first sentence front-loads the resource and a comprehensive metric list, while the second clarifies ownership scope. Every phrase contributes either purpose or behavioral context.

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 single-parameter, read-only tool with an output schema present, the description is complete: it specifies what the operation does, what data is returned, and what scope it applies to. There is no additional information an agent needs to decide whether to call it or to know what to expect.

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 single parameter presentationId is fully documented in the schema (100% coverage), including the expected value and what it refers to. The description doesn't add syntax or constraints beyond that, so a 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 uses a specific verb, 'watch' (i.e., read/retrieve), paired with the resource 'analytics for one of your presentations,' and enumerates the exact metrics provided. This clearly distinguishes it from sibling tools like get_presentation_status or get_presentation_spec, which address different aspects of a presentation.

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 phrase 'for one of your presentations' and 'how its own published briefings performed' make the target scenario explicit: an agent that needs performance analytics for a presentation it published. It doesn't name alternative tools or explicitly exclude them, but it gives enough context to infer when this tool applies.

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

get_presentation_contextLoad a presentation into contextA
Read-onlyIdempotent
Inspect

Load any shared Bisque presentation for reading: its metadata, the full per-slide narration transcript with timestamps, and the context.md file its author shipped for agents (extra background the slides summarize). Target it by watch URL (https://bisque.today/p/{handle}/{slug}) or by handle + slug โ€” it does not have to be yours. Use this to read, summarize, cite, or answer questions about a presentation: ground your answers in the returned transcript and context, and cite slides as [slide N].

ParametersJSON Schema
NameRequiredDescriptionDefault
urlNoWatch URL, e.g. https://bisque.today/p/{handle}/{slug}. Provide this OR handle + slug.
slugNoURL slug, the last path segment of the watch URL. Use with handle, or pass url instead.
handleNoChannel handle (leading @ allowed).

Output Schema

ParametersJSON Schema
NameRequiredDescription
slugYes
titleYes
handleYes
webUrlYes
contextMdYesThe bundle's context.md (shared agent-facing background); null when the presentation ships none.
transcriptYesPer-slide narration, ordered by slide index.
visibilityYes
descriptionNo
publishedAtNoISO 8601, null when unknown.
presentationIdYes
contextTruncatedYes
transcriptTruncatedSlidesYesContent slides the size-capped transcript dropped; 0 = complete.

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds meaningful context beyond annotations: it works on any shared presentation ('does not have to be yours') and lists the return payload (metadata, transcript, context.md), which is valuable operational detail.

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 sentences, each earning its place: the first defines what is loaded, the second explains targeting, and the third gives usage and citation guidance. No filler or redundancy; the most important information is front-loaded.

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?

An output schema exists, so return values are covered elsewhere. The description supplies the necessary behavioral context (any shared presentation, the citation convention) and covers both targeting methods, making it complete for an agent to call the tool correctly.

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% with all three parameters described. The description restates the url-or-handle+slug alternative, but this is already documented in the url parameter description ('Provide this OR handle + slug'), so the description adds no new semantics beyond the schema.

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 (Load) and resource (shared Bisque presentation) and enumerates exactly what is loaded: metadata, per-slide transcript with timestamps, and context.md. It also clarifies the tool is for reading any shared presentation, distinguishing it from siblings like get_presentation_spec by focusing on the full reading context.

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?

Provides explicit usage direction ('Use this to read, summarize, cite, or answer questions about a presentation') and a concrete citation convention ('cite slides as [slide N]'). It does not name alternative tools to exclude, but the context for when to use it is clear and unambiguous.

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

get_presentation_specGet the authoring specA
Read-onlyIdempotent
Inspect

Fetch the html-presentation/v1 authoring contract: document structure, the dual landscape/vertical layout rule, and the narration markup that makes slides speak. Call this BEFORE authoring for create_presentation โ€” documents written without it publish with missing audio.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
specYesThe full authoring recipe + format contract, markdown.
formatYes

TDQS

A4.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds meaningful context about the system-level consequence (missing audio) beyond what annotations provide, though it doesn't mention any tool-specific behaviors like rate limits or authentication.

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 the core purpose, followed by a critical usage instruction. Every word earns its place; no redundancy or filler.

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?

The description covers the functional scope (what the spec contains), the workflow context (before create_presentation), and the risk of omission. An output schema exists, so return-value details are not required in the description. The description is complete for an agent to correctly invoke this tool.

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 tool has zero parameters, so the schema is trivially complete (100% coverage). Baseline for 0-param tools is 4, and there is no parameter information to add; the description appropriately doesn't invent any.

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') and resource ('the html-presentation/v1 authoring contract'), and enumerates its contents (document structure, layout rule, narration markup). This clearly distinguishes it from sibling tools like get_presentation_analytics or create_presentation, which have different purposes.

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 when to use it: 'Call this BEFORE authoring for create_presentation', and provides a concrete consequence of not doing so ('documents written without it publish with missing audio'). This leaves no ambiguity about the workflow position.

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

get_presentation_statusGet presentation statusB
Read-onlyIdempotent
Inspect

Fetch the build state and result URL for a presentationId.

ParametersJSON Schema
NameRequiredDescriptionDefault
presentationIdYesThe presentationId returned by create_presentation or publish_narrated_presentation.

Output Schema

ParametersJSON Schema
NameRequiredDescription
readyYesTrue once the presentation is viewable.
webUrlNoShareable watch URL.
narrationNoNarration progress: status (complete | partial | failed | โ€ฆ) and per-slide errors when partial/failed.
visibilityNo
publishStatusYes
presentationIdYes

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already establish readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the description's 'fetch' behavior is consistent and sufficient on the safety front. The description adds a little context by specifying what is fetched (build state, result URL), but it does not disclose any additional behavior such as polling implications or possible states.

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 sentence that front-loads the action and the key outputs. Every word contributes: verb, resource, and parameter scope.

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 one-parameter, read-only status tool backed by a full output schema and strong annotations, this is essentially complete. It could add a sentence about expected use after create/publish, but such context lives partly in the parameter description and is not essential for correct invocation.

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 input schema has 100% description coverage and the only parameter is well documented as the presentationId returned by create_presentation or publish_narrated_presentation. The tool description merely repeats the parameter name without adding extra format, lifecycle, or constraint details, so it stays at the baseline.

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 uses a specific verb ('fetch') and names a concrete resource aspect ('build state and result URL') scoped by presentationId, so an agent knows what the tool returns. It does not explicitly call out sibling tools, but the focus on build state/result URL is enough to distinguish it from analytics, context, and spec tools.

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?

No explicit guidance is given about when to use this tool instead of get_presentation_analytics, get_presentation_context, get_presentation_spec, or list_presentations. The intended use is only implied by the tool name and the short description.

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

list_artifactsList your ArtifactsA
Read-onlyIdempotent
Inspect

List Artifacts you own (scope owned, the default), ones shared with you (shared), or both (all), newest first. Each item carries its id, title, who can open it, and its URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
typeNoOnly this type.
limitNoPage size, default 25.
scopeNoDefault owned.
cursorNonext_cursor from a prior page.

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYes
next_cursorYes

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already cover safety (readOnlyHint, idempotentHint, non-destructive), so the description adds useful behavioral context: default scope, newest-first ordering, and the fields returned in each item. This goes beyond the structured data and gives the agent a concrete expectation of the result.

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 dense sentence that front-loads the action and resource, then efficiently covers scope, ordering, and output shape. Every clause contributes, with no filler or repetition.

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 read-only list tool with no required parameters, strong annotations, full schema parameter descriptions, and an output schema, the description is complete enough for an agent to select and invoke the tool correctly. The minor absence of explicit sibling routing does not create a correctness gap.

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 description coverage is 100%, so the schema already documents all four parameters. The description still adds value by explaining scope semantics ('owned' means you own, 'shared' means shared with you, 'all' means both) and reinforcing the default. This is more than the bare enum values provide.

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 action ('List'), the resource ('Artifacts'), and the scope options (owned/shared/all). It distinguishes itself from sibling tools like get_artifact, create_artifact, and list_artifact_threads by naming the exact resource and operation.

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 clear context for when to use the tool: listing artifacts by ownership scope, with the default spelled out and what 'shared' and 'all' mean. It does not explicitly name alternatives like get_artifact for single-item lookups, but the purpose is clear and no misleading guidance is present.

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

list_artifact_threadsList Artifact comment threadsA
Read-onlyIdempotent
Inspect

List the comment threads people left on one of your Artifacts, newest activity first. Pass activated_only: true to get only the threads where someone mentioned the agent, which are the ones you may reply to and resolve. Each thread carries its anchor (what it is pinned to), the version it was left on, a preview, and agent_activated.

ParametersJSON Schema
NameRequiredDescriptionDefault
afterNoRFC 3339 date-time; only threads with activity after it.
cursorNonext_cursor from a prior page.
statusNoDefault open.
artifact_idYesThe Artifact id (art_โ€ฆ).
activated_onlyNoOnly threads where the agent was mentioned.

Output Schema

ParametersJSON Schema
NameRequiredDescription
itemsYes
artifact_idYes
next_cursorYes

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already cover read-only, idempotent, and non-destructive behavior, so the description is free to add value elsewhere. It discloses result ordering, the meaning of activated_only, and the fields each thread carries (anchor, version, preview, agent_activated) โ€” useful behavior beyond the structured metadata.

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 sentences with no filler: the main action and ordering come first, the key filter guidance follows, and the payload summary closes. 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?

With a full schema, rich annotations, an output schema, and this description covering ordering, filtering semantics, and response contents, an agent has everything needed to select and invoke the tool correctly. Pagination and defaults are already covered by the schema.

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 beyond the schema by explaining that activated_only threads are the actionable ones ('which are the ones you may reply to and resolve'), and it contextualizes the output fields relevant to choosing parameters.

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 a specific verb and resource: 'List the comment threads people left on one of your Artifacts.' It also adds ordering ('newest activity first') and the activated_only filter, making it clearly distinct from the singular get_artifact_thread and the mutation siblings like reply_to_artifact_thread.

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 concrete guidance on when to use the activated_only filter, noting those are 'the ones you may reply to and resolve.' It implies the list-first workflow before reply/resolve, though it does not explicitly name sibling alternatives or exclusion conditions.

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

list_presentationsList your presentationsA
Read-onlyIdempotent
Inspect

List the authenticated user's presentations, newest first. One call returns at most limit of them. A non-null nextCursor in the response means more presentations remain: call again with cursor set to that value to get the page after this one, and keep going until nextCursor is null.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of presentations to return per page.
cursorNoThe `nextCursor` from a previous call, to read the page after that one. Omit it to start at the newest presentation.
visibilityNoReturn only presentations with this visibility. Omit to return every one of them.

Output Schema

ParametersJSON Schema
NameRequiredDescription
nextCursorYesPass this back as `cursor` for the next page. Null when this page is the last one.
presentationsYesNewest first.

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already establish this as a safe, read-only, idempotent, closed-world read, so the safety profile is covered. The description usefully adds behavior those annotations cannot express: newest-first ordering, a per-call cap, and the exact continuation/termination rule for pagination.

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 sentences, zero filler, and front-loaded with the resource and ordering before the pagination mechanics. Every sentence carries distinct information an agent needs.

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 read-only paginated list with an output schema, the description supplies everything the agent needs: scope, ordering, page size behavior, and the full continuation rule. Return value shape is correctly left to the output schema.

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 goes slightly beyond the schema by tying `limit` and `cursor` together into a loop and stating the termination condition when `nextCursor` is null, which the per-parameter schema text does not spell out.

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 verb (List), resource (the authenticated user's presentations), and ordering (newest first), which is enough to separate it from siblings like list_artifacts and list_artifact_threads without opening any schema. The scope is explicit rather than tautological.

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 describes the calling context for pagination: call again with `cursor` set to `nextCursor`, and repeat until `nextCursor` is null. It does not, however, say when to prefer this over sibling list tools or note any preconditions, so it stops short of full when/when-not guidance.

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

publish_narrated_presentationDeprecated โ€” use create_presentation with `audio`A
Destructive
Inspect

DEPRECATED: call create_presentation with an audio array instead โ€” it is the same thing in one call, and the slides are viewable while the narration lands. Publish an html-presentation/v1 document using audio YOU synthesized locally (e.g. with bisque-voice) โ€” free, unlimited, and works on macOS, Linux and Windows. Send each narrated slide's word timings and MP3 metadata; the server assembles presentation.json (recomputing cues from your narration markers) and returns one upload URL per MP3. Then PUT each file and POST the returned completeUrl with the returned files array. RE-PUBLISHING: audio is optional โ€” any narrated slide you omit reuses the audio from the last publish whenever its narration text and speechSpeed are unchanged, so an HTML-only edit needs no synthesis at all. The response reports reused, synthesized, and staleSlides (narrated slides whose text changed and have no audio โ€” synthesize exactly those and publish again). Use create_presentation instead to have the server narrate.

ParametersJSON Schema
NameRequiredDescriptionDefault
slugNoURL slug; defaults to a slugified title.
audioNoOne entry per slide you synthesized, from the JSON `bisque-voice` prints on stdout. `words`, `durationMs`, `size` and `hash` map across verbatim. Optional: omit a slide (or the whole array) and its audio carries forward from the previous publish if the narration text is unchanged โ€” otherwise that slide publishes silent and is listed in `staleSlides`. A FIRST publish with nothing to carry forward is rejected.
titleNoDisplay title for the watch page and listings. Omit to use the title parsed from the document.
assetsNoFiles the document references relative to itself โ€” fonts, images, SVG, Lottie, Rive, bundled audio cues. html-presentation/v1 requires these to be self-hosted, so a presentation that renders locally is broken once published unless they travel with it. Each gets an upload URL back alongside the MP3s; PUT them the same way. Paths must be under `assets/` โ€” the server owns index.html, presentation.json and context.md, and the manifest owns audio/. Omit for a presentation that references nothing.
handleNoPublish under a specific channel handle you own.
voiceIdNoRecords what actually spoke, e.g. kokoro:af_heart for a locally synthesized Kokoro voice. No audio is generated server-side.
designMdNoDesign frontmatter mapped to theme tokens.
madeWithNoCredit the models that made this: the model you are running as, and the engine that synthesized the audio you are uploading โ€” e.g. ["Claude Opus 5", "Kokoro af_heart"]. Shown to viewers in the watch page's โ‹ฏ menu. Send it on every publish; omitting it keeps whatever a previous publish recorded.
contextMdNoShared-with-viewer context.md.
indexHtmlYesFull html-presentation/v1 document (the presentation-format meta gate applies).
visibilityNounlisted (the default) is shareable by link and plays in chat-embedded players; private requires the owner to sign in, so an inline chat player shows a sign-in wall instead of playing โ€” choose private only when the user asked for it.unlisted
speechSpeedNoMust match the speed you synthesized at โ€” it is part of the audio cache key, so changing it on a re-publish makes every slide stale instead of carrying forward.
presentationIdNoStable id for idempotent re-publishes; defaults to slug-<hash(userId:slug)>.
voiceStabilityNoRecords the stability setting you synthesized at. No audio is generated server-side.

Output Schema

ParametersJSON Schema
NameRequiredDescription
filesYesEcho back verbatim as the complete call's `files`.
reusedYesSlide keys whose audio carried forward โ€” no upload.
webUrlYesShareable watch URL.
warningsYes
publishIdYes
uploadUrlsYesOne pre-signed PUT per file to upload.
completeUrlYesPOST here after every PUT, echoing `files` back verbatim.
staleSlidesYesNarrated slide keys that will publish SILENT โ€” synthesize exactly these and publish again.
synthesizedYesSlide keys this request supplied audio for.
presentationIdYes

TDQS

A4.8/5.0
Behavior5/5

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

Annotations already mark destructiveHint=true, and the description adds substantial behavior beyond that: deprecation, the multi-step PUT/POST upload flow, rejection of a first publish with no audio, and response fields such as `reused`, `synthesized`, and `staleSlides`. There is no contradiction with annotations.

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?

The description is long but dense and front-loaded: deprecation and the replacement call appear first, followed by the upload workflow and re-publishing semantics. Every sentence earns its place for this complex tool, though the deprecation notice is restated from the title.

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 14-parameter tool with an output schema and rich annotations, the description provides all decision-level context: deprecation, alternative tool, upload mechanics, carry-forward rules, and response reporting. An agent has enough to decide whether to call it and how to invoke it 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?

Schema coverage is 100%, so the baseline is 3; the description adds extra meaning beyond the schema by explaining that `audio` entries map from bisque-voice stdout, that omission carries forward prior audio, and that changing `speechSpeed` invalidates carry-forward. This is helpful context without merely restating the schema.

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 verb and resource: publishing an html-presentation/v1 document with locally synthesized audio. It also clearly distinguishes itself from create_presentation by declaring itself deprecated and naming the replacement call with an `audio` array.

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 tells the agent to call create_presentation with an `audio` array instead, and explains why it is preferable. It also covers when re-publishing can omit audio, when stale slides need re-synthesis, and when to use create_presentation for server-side narration.

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

reply_to_artifact_threadReply in an Artifact comment threadAInspect

Post a reply in a comment thread as the agent. Allowed only on activated threads (agent_activated true): someone mentioned the agent, or the agent started the thread. People see it as "Agent ยท via ".

ParametersJSON Schema
NameRequiredDescriptionDefault
bodyYes
thread_idYesThe thread id (thr_โ€ฆ).
artifact_idYesThe Artifact id (art_โ€ฆ).

Output Schema

ParametersJSON Schema
NameRequiredDescription
bodyYes
authorYesWho wrote it: { kind: "user", uid, name, handle, avatarUrl } or { kind: "agent", principal, name, via }.
mentionsNo
edited_atNo
reactionsNo
thread_idYes
created_atYes
message_idYes
artifact_idNo
attachmentsNo

TDQS

A4.2/5.0
Behavior4/5

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

The description discloses useful behavioral details beyond the annotations: the reply is posted as the agent, the thread must have agent_activated true, and the reply is publicly attributed as 'Agent ยท via <your name>'. These add context that readOnlyHint=false and destructiveHint=false do not convey. No contradiction with annotations exists.

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 short sentences, each carrying distinct information: the core action, the activation condition, and the visible attribution. It is front-loaded with the main purpose and contains no filler or redundant restatement of the title.

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?

With three simple parameters, an output schema, and annotations, the description covers the essential preconditions and behavioral context needed for correct invocation. The only mild gap is the lack of explicit mention of alternative tools, but the activation rule sufficiently bounds usage.

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 67%, with thread_id and artifact_id already explained in the schema. The description does not add parameter-level meaning, but the body parameter is self-explanatory as the reply text and the schema constrains it to 1-4000 characters. This is adequate but not enhanced.

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 and resource: 'Post a reply in a comment thread as the agent.' It clearly identifies the action, the target object (comment thread), and the actor (the agent). This differentiates it from siblings like create_artifact_thread and resolve_artifact_thread, which are about creating or resolving threads instead of replying.

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 explicit when-to-use conditions: 'Allowed only on activated threads (agent_activated true)' and defines activation via two concrete cases. It does not explicitly name alternative tools, but it provides a clear exclusion boundary that prevents misuse on inactive threads.

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

resolve_artifact_threadResolve or reopen an Artifact comment threadA
Idempotent
Inspect

Mark a comment thread resolved (resolved: true) or reopen it (resolved: false), as the agent. Allowed only on activated threads. Resolve after you have addressed the comment, usually after republishing the Artifact; reply first so the person can see what changed.

ParametersJSON Schema
NameRequiredDescriptionDefault
resolvedYes
thread_idYesThe thread id (thr_โ€ฆ).
artifact_idYesThe Artifact id (art_โ€ฆ).

Output Schema

ParametersJSON Schema
NameRequiredDescription
anchorYesWhere the thread is pinned: kind element (selector, snapshot, slide), text (quote), or page.
statusYes
previewYes
mentionsNo
thread_idYes
created_atYes
created_byYesWho wrote it: { kind: "user", uid, name, handle, avatarUrl } or { kind: "agent", principal, name, via }.
updated_atNo
version_idNo
artifact_idYes
resolved_atNo
participantsNo
message_countYes
version_numberYes
agent_activatedYesTrue once someone mentioned the agent; only then may the agent reply or resolve.
last_message_atYes
root_message_idNo

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare idempotentHint=true, destructiveHint=false, and readOnlyHint=false. The description adds useful behavior beyond these: the operation is performed 'as the agent,' only allowed on activated threads, and belongs to a reply-first workflow. This is meaningful context without contradicting the annotations.

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 dense sentences: the action, the prerequisite, and the recommended workflow sequence. Every sentence earns its place, and the core purpose is front-loaded.

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 the simple boolean toggle, the existing output schema, and annotations covering idempotence and destructiveness, the description supplies the remaining context: activation requirement, agent identity, and ordering relative to replies and republishing. Nothing essential 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 description coverage is 67%, with thread_id and artifact_id already documented. The description explicitly explains the otherwise-undocumented 'resolved' boolean parameter as true for resolving and false for reopening, compensating for the schema gap.

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 and resource: 'Mark a comment thread resolved (resolved: true) or reopen it (resolved: false)' on an Artifact comment thread. It also notes 'as the agent,' which clarifies the acting identity and distinguishes this from thread creation, reply, and retrieval siblings.

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 concrete when-to-use guidance: resolve only after addressing the comment, usually after republishing the Artifact, and reply first so the person can see the change. It also states the activation prerequisite. It does not explicitly name alternatives or why they should be ignored, so it stops short of a 5.

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

share_artifactShare an ArtifactA
Idempotent
Inspect

Set who can open an Artifact you own. audience picks the rule; share_with is the complete list of named people (it replaces the previous list; omit it to keep the current one). Going public deletes every comment thread, so a public change on an Artifact with threads is refused unless delete_threads is true. Returns the URL to send.

ParametersJSON Schema
NameRequiredDescriptionDefault
listedNoShow it in listings (the org library, public discovery) rather than link-only. Default false.
audienceYesWho can open the link. owner: only you. users: the people in share_with. public: anyone with the link.
share_withNoPeople to grant access by email (or uid), with a role. [{ "email": "ana@acme.com", "role": "viewer" }]. viewer opens it; editor can also publish new content. Implies audience "users" when audience is omitted.
artifact_idYesThe Artifact id (art_โ€ฆ).
delete_threadsNoAllow going public on an Artifact that has comment threads, deleting them.

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYes
grantsYes
artifact_idYes
audience_modeYes
discoverabilityYes
public_sharing_allowedNo
external_sharing_allowedNo

TDQS

A3.8/5.0
Behavior1/5

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

The description explicitly says 'Going public deletes every comment thread' and that the change is refused unless delete_threads is true, which is a destructive side effect. The annotations declare destructiveHint=false, directly contradicting the description. This is an annotation contradiction.

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 dense sentences, no filler. Purpose is front-loaded, the replacement semantics and destructive caveat follow, and the return value is stated. Every sentence 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?

The description covers the key operational details: ownership, audience selection, share_with replacement, the public/threads safety rule, and the returned URL. It is nearly complete, but the contradiction between the description and the destructiveHint annotation leaves the tool definition slightly unreliable overall.

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, but the description adds important semantics beyond the schema: share_with replaces the previous list and can be omitted to keep it, and delete_threads is required for a public change when threads exist. It also notes the returned URL.

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 a specific action and resource: 'Set who can open an Artifact you own.' This clearly identifies the tool's access-control role and distinguishes it from create/update/delete artifact siblings.

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 gives clear context for when to call the tool (changing who can open an artifact you own) and explains audience/share_with/delete_threads semantics. It does not explicitly name alternatives or state when not to use it, so it misses the top score.

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

update_artifactUpdate an ArtifactAInspect

Change an Artifact you own or edit. Pass content to publish a new Version of the page at the same URL (the whole document, not a diff; earlier Versions stay in the history). Pass title, description, or icon to change those. Any combination in one call. With content the call waits for the new Version to be live before returning. The new Version keeps the base Version's capabilities and state rules unless you pass capabilities or state.

ParametersJSON Schema
NameRequiredDescriptionDefault
iconNonull clears it.
stateNoWho may read and write which paths of the page's data, by the minimum role: viewer (can open), contributor (a data grant, separate from editing the page), owner. Absent means: everyone who can open reads, contributors and the owner write. Example poll: [{path:'votes',read:'viewer',write:'owner'},{path:'votes/{self}',write:'viewer'}].
titleNo
contentNoThe complete new document, same type as before.
artifact_idYesThe Artifact id (art_โ€ฆ).
descriptionNonull clears it.
capabilitiesNoWhat the page may do at run time. state.read and state.write give it JSON documents at window.bisque.state (get, patch, list, subscribe); viewer.identity tells it who is viewing (window.bisque.viewer); events.emit lets it record typed Events. Omit for a page that only shows things.

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYesThe viewer page.
iconNo
typeYes
titleYes
group_idNo
created_atNo
updated_atNo
version_idNoThe Version this call authored.
artifact_idYes
descriptionNo
audience_modeYesWho can open it: owner, users, org, or public.
version_numberNo
discoverabilityYes
organization_idNo
latest_version_idNo
publication_errorNo
publication_statusNoready means the URL serves this content now. queued or processing means it is still being prepared; call get_artifact to check. failed carries publication_error.
viewer_version_modeNo
published_version_idYesThe Version viewers see; null until a publication is ready.

TDQS

A4.7/5.0
Behavior5/5

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

The description adds valuable behavior beyond annotations: the whole document is replaced, not diffed; earlier Versions remain in history; the call waits for the new Version to be live; and capabilities/state rules are inherited unless explicitly overridden. This gives an agent a strong model of the tool's side effects.

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 compact, front-loaded with the core verb and resource, and every sentence adds useful information. It efficiently covers update scope, versioning behavior, field combinations, waiting semantics, and inheritance without repetition or filler.

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 the tool's complexity, the description is complete enough for an agent to call it correctly. The output schema exists, so return values need not be described; the description covers permissions, version behavior, parameter combinations, and inheritance rules, which are the main contextual gaps.

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 high (86%), so the schema already documents most parameters. The description adds meaning by explaining that content replaces the whole document, that title/description/icon are independent changes, and that capabilities/state are inherited unless passed. These semantics go beyond the schema's individual field 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 uses a specific verb ('Change') and identifies a clear resource ('an Artifact you own or edit'). It also clarifies that passing content publishes a new Version at the same URL, distinguishing this update operation from creation or deletion.

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 states the precondition 'you own or edit' and explains when to pass content versus title/description/icon. It does not explicitly name alternative tools, but the versioning language and 'same URL' make the intended use case clear.

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

update_channelUpdate channelA
Idempotent
Inspect

Update one of your channels. Set the description โ€” the line a stranger reads in a search result or a link unfurl, at most 160 characters, empty to clear it and go back to naming the newest presentations. Set the avatar from an image URL, which is fetched, center-cropped square and resized. Pass either or both. Omit handle to use your default channel.

ParametersJSON Schema
NameRequiredDescriptionDefault
handleNoWhich of your channel handles to update; defaults to your default username.
image_urlNohttps URL of the avatar image (any common format, โ‰ค10 MB).
descriptionNoWhat the channel publishes, in the owner's words. Empty clears it.

Output Schema

ParametersJSON Schema
NameRequiredDescription
failedNoFields that did not apply, each with the reason. A field listed here left the channel unchanged; the ones in updated still took effect.
handleYes
updatedYesField names that were written.
channelUrlYesPublic channel page carrying the update.
descriptionNoThe stored line, or null when the write cleared it.

TDQS

A4.8/5.0
Behavior5/5

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

The description discloses important behavior beyond the annotations: an empty description clears the channel description and restores a fallback naming behavior, and the avatar is fetched, center-cropped square, and resized. It also clarifies the default-handle behavior. None of this contradicts the annotations, and the added context materially helps an agent predict side effects.

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 compact and front-loaded: the core action appears first, followed by specific parameter behaviors and default handling. Every sentence contributes useful information, and there is no filler or repetition of schema details beyond what adds operational meaning.

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 mutation tool with three optional parameters and no required fields, the description covers the important scenarios: what each parameter does, how to clear the description, how avatar processing works, and what happens when handle is omitted. Since an output schema exists, explaining return values is unnecessary. Nothing essential is missing.

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

Parameters5/5

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

Even though the input schema documents all parameters, the description adds meaning beyond it: it explains what a stranger sees in search results or link unfurls, that an empty description clears it, that the avatar image is center-cropped and resized, and that parameters can be passed either or both. The 'omit handle for default channel' note is also valuable.

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 a specific verb and resource, 'Update one of your channels,' and then clearly enumerates exactly what can be updated: the description and the avatar. It is immediately distinguishable from the presentation-focused sibling tools and leaves no ambiguity about its scope.

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 practical usage guidance: you can pass either or both of description and image URL, and omitting handle falls back to your default channel. It does not name an alternative because no sibling tool performs channel updates, but the guidance clearly covers the main decision points for calling it.

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.

  1. 2 tool updates
    • Changedcreate_artifact2 fields changed
      • addedInput schema / properties / capabilities
        Added value: +{
        +  "description": "What the page may do at run time. state.read and state.write give it JSON documents at window.bisque.state (get, patch, list, subscribe); viewer.identity tells it who is viewing (window.bisque.viewer); events.emit lets it record typed Events. Omit for a page that only shows things.",
        +  "items": {
        +    "enum": [
        +      "state.read",
        +      "state.write",
        +      "events.emit",
        +      "viewer.identity"
        +    ],
        +    "type": "string"
        +  },
        +  "type": "array",
        +  "uniqueItems": true
        +}
      • addedInput schema / properties / state
        Added value: +{
        +  "additionalProperties": false,
        +  "description": "Who may read and write which paths of the page's data, by the minimum role: viewer (can open), contributor (a data grant, separate from editing the page), owner. Absent means: everyone who can open reads, contributors and the owner write. Example poll: [{path:'votes',read:'viewer',write:'owner'},{path:'votes/{self}',write:'viewer'}].",
        +  "properties": {
        +    "rules": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "path": {
        +            "description": "A slash path the rule covers, and everything below it; '' is the root. A trailing {self} names each person's own document under the prefix.",
        +            "type": "string"
        +          },
        +          "read": {
        +            "enum": [
        +              "anyone",
        +              "viewer",
        +              "contributor",
        +              "owner"
        +            ],
        +            "type": "string"
        +          },
        +          "write": {
        +            "enum": [
        +              "viewer",
        +              "contributor",
        +              "owner"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "path"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    }
        +  },
        +  "type": "object"
        +}
    • Changedupdate_artifact2 fields changed
      • addedInput schema / properties / capabilities
        Added value: +{
        +  "description": "What the page may do at run time. state.read and state.write give it JSON documents at window.bisque.state (get, patch, list, subscribe); viewer.identity tells it who is viewing (window.bisque.viewer); events.emit lets it record typed Events. Omit for a page that only shows things.",
        +  "items": {
        +    "enum": [
        +      "state.read",
        +      "state.write",
        +      "events.emit",
        +      "viewer.identity"
        +    ],
        +    "type": "string"
        +  },
        +  "type": "array",
        +  "uniqueItems": true
        +}
      • addedInput schema / properties / state
        Added value: +{
        +  "additionalProperties": false,
        +  "description": "Who may read and write which paths of the page's data, by the minimum role: viewer (can open), contributor (a data grant, separate from editing the page), owner. Absent means: everyone who can open reads, contributors and the owner write. Example poll: [{path:'votes',read:'viewer',write:'owner'},{path:'votes/{self}',write:'viewer'}].",
        +  "properties": {
        +    "rules": {
        +      "items": {
        +        "additionalProperties": false,
        +        "properties": {
        +          "path": {
        +            "description": "A slash path the rule covers, and everything below it; '' is the root. A trailing {self} names each person's own document under the prefix.",
        +            "type": "string"
        +          },
        +          "read": {
        +            "enum": [
        +              "anyone",
        +              "viewer",
        +              "contributor",
        +              "owner"
        +            ],
        +            "type": "string"
        +          },
        +          "write": {
        +            "enum": [
        +              "viewer",
        +              "contributor",
        +              "owner"
        +            ],
        +            "type": "string"
        +          }
        +        },
        +        "required": [
        +          "path"
        +        ],
        +        "type": "object"
        +      },
        +      "type": "array"
        +    }
        +  },
        +  "type": "object"
        +}
  2. 1 tool update
    • Changedlist_presentations4 fields changed
      • addedInput schema / properties / cursor
        Added value: +{
        +  "description": "The `nextCursor` from a previous call, to read the page after that one. Omit it to start at the newest presentation.",
        +  "type": "string"
        +}
      • changedInput schema / properties / limit / description
        Previous value: -"Maximum number of presentations to return."New value: +"Maximum number of presentations to return per page."
      • addedOutput schema / properties / nextCursor
        Added value: +{
        +  "description": "Pass this back as `cursor` for the next page. Null when this page is the last one.",
        +  "type": [
        +    "string",
        +    "null"
        +  ]
        +}
      • changedOutput schema / required
        Previous value: -[
        -  "presentations"
        -]New value: +[
        +  "presentations",
        +  "nextCursor"
        +]
  3. 1 tool update
    • Changedcreate_presentation1 field changed
      • addedInput schema / properties / audio
        Added value: +{
        +  "description": "Optional. One entry per slide YOU narrated, from the JSON `bisque-voice` prints โ€” word timings, duration, size and digest. Send it and your audio is used (free, unlimited, any OS); leave it out and the server narrates. The response says how many slides speak, and names any that published silent.",
        +  "items": {
        +    "type": "object"
        +  },
        +  "type": "array"
        +}
  4. 2 tool updates
    • Changedcreate_presentation1 field changed
      • addedInput schema / properties / madeWith
        Added value: +{
        +  "description": "Credit the models that made this: the model you are running as, and the narration engine or voice service if you know it โ€” e.g. [\"Claude Opus 5\", \"Kokoro af_heart\"]. Shown to viewers in the watch page's โ‹ฏ menu. Send it on every create; omitting it keeps whatever a previous publish recorded.",
        +  "items": {
        +    "maxLength": 80,
        +    "type": "string"
        +  },
        +  "maxItems": 8,
        +  "type": "array"
        +}
    • Changedpublish_narrated_presentation1 field changed
      • addedInput schema / properties / madeWith
        Added value: +{
        +  "description": "Credit the models that made this: the model you are running as, and the engine that synthesized the audio you are uploading โ€” e.g. [\"Claude Opus 5\", \"Kokoro af_heart\"]. Shown to viewers in the watch page's โ‹ฏ menu. Send it on every publish; omitting it keeps whatever a previous publish recorded.",
        +  "items": {
        +    "maxLength": 80,
        +    "type": "string"
        +  },
        +  "maxItems": 8,
        +  "type": "array"
        +}
  5. 6 tool updates
    • Addedcreate_artifact
    • Addeddelete_artifact
    • Addedget_artifact
    • Addedlist_artifacts
    • Addedshare_artifact
    • Addedupdate_artifact
  6. 5 tool updates
    • Addedcreate_artifact_thread
    • Addedget_artifact_thread
    • Addedlist_artifact_threads
    • Addedreply_to_artifact_thread
    • Addedresolve_artifact_thread
  7. 6 tool updates
    • Changedcreate_presentation3 fields changed
      • addedInput schema / properties / speechSpeed / description
        Added value: +"Narration speed multiplier passed to the voice. Omit for the server default."
      • addedInput schema / properties / title / description
        Added value: +"Display title for the watch page and listings. Omit to use the title parsed from the document."
      • addedInput schema / properties / voiceStability / description
        Added value: +"Voice stability setting passed to the narration engine. Omit for the server default."
    • Changedget_presentation_analytics1 field changed
      • addedInput schema / properties / presentationId / description
        Added value: +"The presentationId whose view counts and survey responses you want."
    • Changedget_presentation_context1 field changed
      • addedInput schema / properties / slug / description
        Added value: +"URL slug, the last path segment of the watch URL. Use with handle, or pass url instead."
    • Changedget_presentation_status1 field changed
      • addedInput schema / properties / presentationId / description
        Added value: +"The presentationId returned by create_presentation or publish_narrated_presentation."
    • Changedlist_presentations2 fields changed
      • addedInput schema / properties / limit / description
        Added value: +"Maximum number of presentations to return."
      • addedInput schema / properties / visibility / description
        Added value: +"Return only presentations with this visibility. Omit to return every one of them."
    • Changedpublish_narrated_presentation2 fields changed
      • addedInput schema / properties / title / description
        Added value: +"Display title for the watch page and listings. Omit to use the title parsed from the document."
      • addedInput schema / properties / voiceStability / description
        Added value: +"Records the stability setting you synthesized at. No audio is generated server-side."
  8. 8 tool updates
    • First observedcreate_presentation
    • First observedget_presentation_analytics
    • First observedget_presentation_context
    • First observedget_presentation_spec
    • First observedget_presentation_status
    • First observedlist_presentations
    • First observedpublish_narrated_presentation
    • First observedupdate_channel

Related MCP Connectors

Related MCP Servers

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources