Bisque Presentations
Server Details
Create narrated presentations from HTML, poll build status, list them, read one back as text.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP ยท MCP 2025-11-25
- URL
TDQS
Scored across 19 tools
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.
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.
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.
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 toolscreate_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.
| Name | Required | Description | Default |
|---|---|---|---|
| icon | No | An emoji for the tab and listing, e.g. ๐. | |
| type | No | Default html. | |
| state | No | 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'}]. | |
| title | Yes | A short name, the way a document or app is named. | |
| listed | No | Show it in listings (the org library, public discovery) rather than link-only. Default false. | |
| content | Yes | The 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. | |
| audience | No | Who can open the link. owner: only you. users: the people in share_with. public: anyone with the link. | |
| share_with | No | People 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. | |
| description | No | One sentence saying what the page is; shown in listings. | |
| capabilities | No | 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. |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | Yes | The viewer page. |
| icon | No | |
| type | Yes | |
| title | Yes | |
| group_id | No | |
| created_at | No | |
| updated_at | No | |
| version_id | Yes | The Version this call authored. |
| artifact_id | Yes | |
| description | No | |
| audience_mode | Yes | Who can open it: owner, users, org, or public. |
| version_number | No | |
| discoverability | Yes | |
| organization_id | No | |
| latest_version_id | No | |
| publication_error | No | |
| publication_status | Yes | ready 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_mode | No | |
| published_version_id | Yes | The Version viewers see; null until a publication is ready. |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | Markdown subset: bold, italic, code, links, lists. | |
| anchor | No | Optional 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_id | Yes | The Artifact id (art_โฆ). |
Output Schema
| Name | Required | Description |
|---|---|---|
| anchor | Yes | Where the thread is pinned: kind element (selector, snapshot, slide), text (quote), or page. |
| status | Yes | |
| preview | Yes | |
| mentions | No | |
| messages | Yes | |
| thread_id | Yes | |
| created_at | Yes | |
| created_by | Yes | Who wrote it: { kind: "user", uid, name, handle, avatarUrl } or { kind: "agent", principal, name, via }. |
| updated_at | No | |
| version_id | No | |
| artifact_id | Yes | |
| resolved_at | No | |
| participants | No | |
| message_count | Yes | |
| version_number | Yes | |
| agent_activated | Yes | True once someone mentioned the agent; only then may the agent reply or resolve. |
| last_message_at | Yes | |
| root_message_id | No |
TDQS
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.
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.
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.
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.
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.
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 presentationADestructiveInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | No | URL slug; defaults to a slugified title. | |
| audio | No | 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. | |
| title | No | Display title for the watch page and listings. Omit to use the title parsed from the document. | |
| assets | No | Files 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. | |
| dryRun | No | Sandbox: 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. | |
| handle | No | Publish under a specific channel handle you own. | |
| voiceId | No | Narration 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. | |
| designMd | No | Design frontmatter mapped to theme tokens. | |
| madeWith | No | 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. | |
| contextMd | No | Shared-with-viewer context.md. | |
| indexHtml | Yes | Full html-presentation/v1 document (the presentation-format meta gate applies). | |
| visibility | No | unlisted (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 |
| speechSpeed | No | Narration speed multiplier passed to the voice. Omit for the server default. | |
| presentationId | No | Stable id for idempotent re-creates; defaults to slug-<hash(userId:slug)>. | |
| voiceStability | No | Voice stability setting passed to the narration engine. Omit for the server default. |
Output Schema
| Name | Required | Description |
|---|---|---|
| status | Yes | ready = nothing needed narration; queued = narration runs in the background โ poll get_presentation_status. |
| webUrl | Yes | Shareable watch URL (live once status is ready). |
| narration | Yes | |
| statusUrl | Yes | |
| presentationId | Yes |
TDQS
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.
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.
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.
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.
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.
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 ArtifactADestructiveIdempotentInspect
Delete an Artifact you own. Its URL stops working for everyone. Confirm with the user before calling this.
| Name | Required | Description | Default |
|---|---|---|---|
| artifact_id | Yes | The Artifact id (art_โฆ). |
Output Schema
| Name | Required | Description |
|---|---|---|
| deleted | Yes | |
| artifact_id | Yes | |
| already_deleted | No |
TDQS
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.
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.
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.
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.
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.
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 ArtifactARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| artifact_id | Yes | The Artifact id (art_โฆ). |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | Yes | The viewer page. |
| icon | No | |
| type | Yes | |
| title | Yes | |
| group_id | No | |
| created_at | No | |
| updated_at | No | |
| artifact_id | Yes | |
| description | No | |
| audience_mode | Yes | Who can open it: owner, users, org, or public. |
| discoverability | Yes | |
| organization_id | No | |
| latest_version_id | No | |
| viewer_version_mode | No | |
| published_version_id | Yes | The Version viewers see; null until a publication is ready. |
TDQS
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.
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.
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.
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.
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.
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 threadARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| thread_id | Yes | The thread id (thr_โฆ). | |
| artifact_id | Yes | The Artifact id (art_โฆ). |
Output Schema
| Name | Required | Description |
|---|---|---|
| anchor | Yes | Where the thread is pinned: kind element (selector, snapshot, slide), text (quote), or page. |
| status | Yes | |
| preview | Yes | |
| mentions | No | |
| messages | Yes | |
| thread_id | Yes | |
| created_at | Yes | |
| created_by | Yes | Who wrote it: { kind: "user", uid, name, handle, avatarUrl } or { kind: "agent", principal, name, via }. |
| updated_at | No | |
| version_id | No | |
| artifact_id | Yes | |
| resolved_at | No | |
| participants | No | |
| message_count | Yes | |
| version_number | Yes | |
| agent_activated | Yes | True once someone mentioned the agent; only then may the agent reply or resolve. |
| last_message_at | Yes | |
| root_message_id | No |
TDQS
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.
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.
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.
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.
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.
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 analyticsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| presentationId | Yes | The presentationId whose view counts and survey responses you want. |
Output Schema
| Name | Required | Description |
|---|---|---|
| slug | Yes | |
| title | Yes | |
| webUrl | No | |
| sources | Yes | Traffic source โ view count. |
| likeCount | Yes | |
| viewCount | Yes | |
| orgDomains | Yes | Organization email domains of signed-in viewers (personal providers filtered), sorted desc. |
| slideReach | Yes | Retention funnel ordered by slide index. |
| anonViewers | Yes | |
| uniqueViewers | Yes | Distinct signed-in viewers. |
| completedCount | Yes | |
| completionRate | Yes | completedCount / viewCount, 0..1; null when no views. |
| presentationId | Yes |
TDQS
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.
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.
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.
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.
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.
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 contextARead-onlyIdempotentInspect
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].
| Name | Required | Description | Default |
|---|---|---|---|
| url | No | Watch URL, e.g. https://bisque.today/p/{handle}/{slug}. Provide this OR handle + slug. | |
| slug | No | URL slug, the last path segment of the watch URL. Use with handle, or pass url instead. | |
| handle | No | Channel handle (leading @ allowed). |
Output Schema
| Name | Required | Description |
|---|---|---|
| slug | Yes | |
| title | Yes | |
| handle | Yes | |
| webUrl | Yes | |
| contextMd | Yes | The bundle's context.md (shared agent-facing background); null when the presentation ships none. |
| transcript | Yes | Per-slide narration, ordered by slide index. |
| visibility | Yes | |
| description | No | |
| publishedAt | No | ISO 8601, null when unknown. |
| presentationId | Yes | |
| contextTruncated | Yes | |
| transcriptTruncatedSlides | Yes | Content slides the size-capped transcript dropped; 0 = complete. |
TDQS
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.
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.
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.
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.
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.
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 specARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| spec | Yes | The full authoring recipe + format contract, markdown. |
| format | Yes |
TDQS
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.
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.
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.
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.
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.
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 statusBRead-onlyIdempotentInspect
Fetch the build state and result URL for a presentationId.
| Name | Required | Description | Default |
|---|---|---|---|
| presentationId | Yes | The presentationId returned by create_presentation or publish_narrated_presentation. |
Output Schema
| Name | Required | Description |
|---|---|---|
| ready | Yes | True once the presentation is viewable. |
| webUrl | No | Shareable watch URL. |
| narration | No | Narration progress: status (complete | partial | failed | โฆ) and per-slide errors when partial/failed. |
| visibility | No | |
| publishStatus | Yes | |
| presentationId | Yes |
TDQS
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.
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.
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.
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.
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.
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 ArtifactsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Only this type. | |
| limit | No | Page size, default 25. | |
| scope | No | Default owned. | |
| cursor | No | next_cursor from a prior page. |
Output Schema
| Name | Required | Description |
|---|---|---|
| items | Yes | |
| next_cursor | Yes |
TDQS
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.
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.
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.
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.
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.
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 threadsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| after | No | RFC 3339 date-time; only threads with activity after it. | |
| cursor | No | next_cursor from a prior page. | |
| status | No | Default open. | |
| artifact_id | Yes | The Artifact id (art_โฆ). | |
| activated_only | No | Only threads where the agent was mentioned. |
Output Schema
| Name | Required | Description |
|---|---|---|
| items | Yes | |
| artifact_id | Yes | |
| next_cursor | Yes |
TDQS
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.
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.
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.
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.
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.
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 presentationsARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of presentations to return per page. | |
| cursor | No | The `nextCursor` from a previous call, to read the page after that one. Omit it to start at the newest presentation. | |
| visibility | No | Return only presentations with this visibility. Omit to return every one of them. |
Output Schema
| Name | Required | Description |
|---|---|---|
| nextCursor | Yes | Pass this back as `cursor` for the next page. Null when this page is the last one. |
| presentations | Yes | Newest first. |
TDQS
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.
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.
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.
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.
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.
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`ADestructiveInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | No | URL slug; defaults to a slugified title. | |
| audio | No | One 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. | |
| title | No | Display title for the watch page and listings. Omit to use the title parsed from the document. | |
| assets | No | Files 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. | |
| handle | No | Publish under a specific channel handle you own. | |
| voiceId | No | Records what actually spoke, e.g. kokoro:af_heart for a locally synthesized Kokoro voice. No audio is generated server-side. | |
| designMd | No | Design frontmatter mapped to theme tokens. | |
| madeWith | No | 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. | |
| contextMd | No | Shared-with-viewer context.md. | |
| indexHtml | Yes | Full html-presentation/v1 document (the presentation-format meta gate applies). | |
| visibility | No | unlisted (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 |
| speechSpeed | No | Must 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. | |
| presentationId | No | Stable id for idempotent re-publishes; defaults to slug-<hash(userId:slug)>. | |
| voiceStability | No | Records the stability setting you synthesized at. No audio is generated server-side. |
Output Schema
| Name | Required | Description |
|---|---|---|
| files | Yes | Echo back verbatim as the complete call's `files`. |
| reused | Yes | Slide keys whose audio carried forward โ no upload. |
| webUrl | Yes | Shareable watch URL. |
| warnings | Yes | |
| publishId | Yes | |
| uploadUrls | Yes | One pre-signed PUT per file to upload. |
| completeUrl | Yes | POST here after every PUT, echoing `files` back verbatim. |
| staleSlides | Yes | Narrated slide keys that will publish SILENT โ synthesize exactly these and publish again. |
| synthesized | Yes | Slide keys this request supplied audio for. |
| presentationId | Yes |
TDQS
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.
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.
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.
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.
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.
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 ".
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | ||
| thread_id | Yes | The thread id (thr_โฆ). | |
| artifact_id | Yes | The Artifact id (art_โฆ). |
Output Schema
| Name | Required | Description |
|---|---|---|
| body | Yes | |
| author | Yes | Who wrote it: { kind: "user", uid, name, handle, avatarUrl } or { kind: "agent", principal, name, via }. |
| mentions | No | |
| edited_at | No | |
| reactions | No | |
| thread_id | Yes | |
| created_at | Yes | |
| message_id | Yes | |
| artifact_id | No | |
| attachments | No |
TDQS
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.
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.
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.
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.
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.
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 threadAIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| resolved | Yes | ||
| thread_id | Yes | The thread id (thr_โฆ). | |
| artifact_id | Yes | The Artifact id (art_โฆ). |
Output Schema
| Name | Required | Description |
|---|---|---|
| anchor | Yes | Where the thread is pinned: kind element (selector, snapshot, slide), text (quote), or page. |
| status | Yes | |
| preview | Yes | |
| mentions | No | |
| thread_id | Yes | |
| created_at | Yes | |
| created_by | Yes | Who wrote it: { kind: "user", uid, name, handle, avatarUrl } or { kind: "agent", principal, name, via }. |
| updated_at | No | |
| version_id | No | |
| artifact_id | Yes | |
| resolved_at | No | |
| participants | No | |
| message_count | Yes | |
| version_number | Yes | |
| agent_activated | Yes | True once someone mentioned the agent; only then may the agent reply or resolve. |
| last_message_at | Yes | |
| root_message_id | No |
TDQS
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.
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| icon | No | null clears it. | |
| state | No | 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'}]. | |
| title | No | ||
| content | No | The complete new document, same type as before. | |
| artifact_id | Yes | The Artifact id (art_โฆ). | |
| description | No | null clears it. | |
| capabilities | No | 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. |
Output Schema
| Name | Required | Description |
|---|---|---|
| url | Yes | The viewer page. |
| icon | No | |
| type | Yes | |
| title | Yes | |
| group_id | No | |
| created_at | No | |
| updated_at | No | |
| version_id | No | The Version this call authored. |
| artifact_id | Yes | |
| description | No | |
| audience_mode | Yes | Who can open it: owner, users, org, or public. |
| version_number | No | |
| discoverability | Yes | |
| organization_id | No | |
| latest_version_id | No | |
| publication_error | No | |
| publication_status | No | ready 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_mode | No | |
| published_version_id | Yes | The Version viewers see; null until a publication is ready. |
TDQS
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.
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.
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.
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.
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.
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 channelAIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| handle | No | Which of your channel handles to update; defaults to your default username. | |
| image_url | No | https URL of the avatar image (any common format, โค10 MB). | |
| description | No | What the channel publishes, in the owner's words. Empty clears it. |
Output Schema
| Name | Required | Description |
|---|---|---|
| failed | No | Fields that did not apply, each with the reason. A field listed here left the channel unchanged; the ones in updated still took effect. |
| handle | Yes | |
| updated | Yes | Field names that were written. |
| channelUrl | Yes | Public channel page carrying the update. |
| description | No | The stored line, or null when the write cleared it. |
TDQS
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.
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.
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.
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.
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.
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.
2 tool updates
- Changed
create_artifact2 fields changed- added
Input schema / properties / capabilitiesAdded 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 +} - added
Input schema / properties / stateAdded 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" +}
- Changed
update_artifact2 fields changed- added
Input schema / properties / capabilitiesAdded 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 +} - added
Input schema / properties / stateAdded 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" +}
1 tool update
- Changed
list_presentations4 fields changed- added
Input schema / properties / cursorAdded 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" +} - changed
Input schema / properties / limit / descriptionPrevious value: -"Maximum number of presentations to return."New value: +"Maximum number of presentations to return per page." - added
Output schema / properties / nextCursorAdded value: +{ + "description": "Pass this back as `cursor` for the next page. Null when this page is the last one.", + "type": [ + "string", + "null" + ] +} - changed
Output schema / requiredPrevious value: -[ - "presentations" -]New value: +[ + "presentations", + "nextCursor" +]
1 tool update
- Changed
create_presentation1 field changed- added
Input schema / properties / audioAdded 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" +}
2 tool updates
- Changed
create_presentation1 field changed- added
Input schema / properties / madeWithAdded 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" +}
- Changed
publish_narrated_presentation1 field changed- added
Input schema / properties / madeWithAdded 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" +}
6 tool updates
- Added
create_artifact - Added
delete_artifact - Added
get_artifact - Added
list_artifacts - Added
share_artifact - Added
update_artifact
5 tool updates
- Added
create_artifact_thread - Added
get_artifact_thread - Added
list_artifact_threads - Added
reply_to_artifact_thread - Added
resolve_artifact_thread
6 tool updates
- Changed
create_presentation3 fields changed- added
Input schema / properties / speechSpeed / descriptionAdded value: +"Narration speed multiplier passed to the voice. Omit for the server default." - added
Input schema / properties / title / descriptionAdded value: +"Display title for the watch page and listings. Omit to use the title parsed from the document." - added
Input schema / properties / voiceStability / descriptionAdded value: +"Voice stability setting passed to the narration engine. Omit for the server default."
- Changed
get_presentation_analytics1 field changed- added
Input schema / properties / presentationId / descriptionAdded value: +"The presentationId whose view counts and survey responses you want."
- Changed
get_presentation_context1 field changed- added
Input schema / properties / slug / descriptionAdded value: +"URL slug, the last path segment of the watch URL. Use with handle, or pass url instead."
- Changed
get_presentation_status1 field changed- added
Input schema / properties / presentationId / descriptionAdded value: +"The presentationId returned by create_presentation or publish_narrated_presentation."
- Changed
list_presentations2 fields changed- added
Input schema / properties / limit / descriptionAdded value: +"Maximum number of presentations to return." - added
Input schema / properties / visibility / descriptionAdded value: +"Return only presentations with this visibility. Omit to return every one of them."
- Changed
publish_narrated_presentation2 fields changed- added
Input schema / properties / title / descriptionAdded value: +"Display title for the watch page and listings. Omit to use the title parsed from the document." - added
Input schema / properties / voiceStability / descriptionAdded value: +"Records the stability setting you synthesized at. No audio is generated server-side."
8 tool updates
- First observed
create_presentation - First observed
get_presentation_analytics - First observed
get_presentation_context - First observed
get_presentation_spec - First observed
get_presentation_status - First observed
list_presentations - First observed
publish_narrated_presentation - First observed
update_channel
Related MCP Connectors
List, share, upload, and manage Slideless HTML presentations from any MCP host.
Upload AI-written HTML presentations and manage expiring, revocable share links over OAuth.
Publish and manage existing HTML presentations from an MCP-capable Agent.
Render HTML, Markdown, or URLs to images, PDF, or branded artifacts; extract and watch pages.
Related MCP Servers
FlicenseAqualityDmaintenanceGenerate PowerPoint presentations using the Slidespeak API714-- FlicenseNot gradedqualityBmaintenanceEnables generating finished MP3 podcast audio from scripts using local TTS engines, with configurable voices and speech speed, plus text-to-speech and voice listing tools.-
- FlicenseAqualityAmaintenanceRecords narrated walkthroughs of any webapp by orchestrating Playwright, speech-mcp TTS, and FFmpeg composition.62-
- FlicenseNot gradedqualityDmaintenanceConverts slide-oriented HTML into editable PowerPoint files via an MCP server, using Chromium for layout measurement and supporting editable text, shapes, images, and raster fallbacks.-
Glama MCP Gateway
Add one secure layer between your agents and this server.