Renderball
Server Details
Designed, animated, editable presentations your AI writes on Renderball. No account needed to try.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- agarces1999/renderball-skills
- GitHub Stars
- 0
TDQS
Scored across 8 tools
create_deck and write_outline both appear to accept an outline and return a writing brief, making their boundaries unclear. get_brief adds further overlap by retrieving briefs for outlines that may already have been saved by either tool.
Most tools follow a verb_noun pattern (create_deck, list_decks, share_deck, submit_deck, write_outline). deck_status breaks the pattern as noun_noun, and see_deck uses an informal verb, but the set is still generally predictable.
Eight tools is well within the ideal range for a presentation creation service. Each tool supports a distinct step in the main workflow, and none feel superfluous despite some overlap.
The core lifecycle is covered: create/outline, brief, submit, status, visual review, share, and list. Missing delete or rename tools are minor gaps since the editor link and resubmission flow cover most document management needs.
Available Tools
8 toolscreate_deckCreate a deckAInspect
Start a new presentation from a brief, the brand as YOU know it (name, and only the colours, fonts and logo you actually have — never guess a colour) and your outline. With the outline the reply carries the WRITING BRIEF, so the whole deck is two calls: this, then submit_deck. Without an account it also returns a guest_token to pass on later calls and deck_url, the one link to give the user.
| Name | Required | Description | Default |
|---|---|---|---|
| brand | No | The brand as YOU know it: name, and only the colours, fonts and logo you actually have. Never guess a colour; leave it out. | |
| brief | Yes | What the deck is for, who it is for, what it should argue and ask. Real facts only; the truth check refuses invented figures. | |
| pages | No | How many pages you intend to write (default 5). Ignored when `outline` is given. | |
| outline | No | Your page-by-page outline (one entry per page: label, description, visual_concept, content with a headline). Send it here and the reply carries the WRITING BRIEF — one call instead of create_deck + write_outline. | |
| brand_url | No | Key holders only: a website Renderball reads for colours, fonts and logo when no brand is declared. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the minimal annotations (readOnlyHint=false, destructiveHint=false), the description discloses important behavior: sending an outline makes the reply carry the WRITING BRIEF, and without an account the tool returns a guest_token for later calls and a deck_url for the user. This meaningfully helps an agent anticipate outputs and side conditions, though it could say more about what happens when an account is present.
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 core action and key constraints come first, followed by workflow and return-value context. Every sentence contributes essential information an agent needs to invoke the tool correctly.
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 complex nested schema and no output schema, the description covers the critical flow-level outputs: the WRITING BRIEF, guest_token, and deck_url. It also connects the tool to the larger two-step deck process. Minor gaps remain, such as explicit account-behavior details and any prerequisites beyond the schema, but the description is largely sufficient 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?
Schema description coverage is 100%, so the schema already documents every parameter in detail. The tool description adds emphasis on the brand contract ('never guess a colour') and the outline-to-writing-brief relationship, but it does not substantially expand parameter meaning beyond what the schema provides. 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 and resource ('Start a new presentation') and clearly differentiates this from siblings by framing the two-call workflow: 'this, then submit_deck'. It also makes clear the scope of inputs ('a brief, the brand as YOU know it... and your outline'), so an agent can identify what create_deck does versus write_outline or submit_deck.
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 workflow guidance: with an outline, the response carries the WRITING BRIEF, making the whole flow just 'this, then submit_deck'. It also explains the guest case by noting a guest_token and deck_url are returned. It stops short of explicitly saying when not to use this tool versus write_outline or other siblings, but the intended creation flow is clear.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
deck_statusCheck an importARead-onlyInspect
Whether a submitted deck is still importing, ready (with the editor link), or failed (with the reason).
| Name | Required | Description | Default |
|---|---|---|---|
| deck_id | Yes | ||
| guest_token | No | Only for a deck created WITHOUT an account: the guest_token create_deck returned. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint annotation already covers the safe, non-mutating behavior. The description adds useful context about what the agent can expect in the outcome (editor link for ready, reason for failure), but it does not discuss polling frequency, response format, or any edge cases.
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, compact sentence that immediately conveys the tool's purpose and key outcomes. 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?
Given the low complexity and no output schema, the description adequately covers the return behavior by naming the three states and what each provides. It could be slightly stronger on usage timing, but the core calling context is clear.
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 50%: guest_token is documented but deck_id is not. The description adds little beyond the schema, though 'a submitted deck' loosely connects to deck_idapiens. It does not clarify how guest_token should be used beyond the schema note.
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 identifies the resource (a submitted deck import) and the operation (checking its status), listing the possible outcomes: importing, ready, or failed. It is distinct enough from siblings like list_decks or see_deck, though it does not explicitly name them.
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 implies the tool should be called after submitting a deck to poll its import progress, but it does not explicitly state when to use it versus alternatives or indicate that it is the only status-checking tool. No exclusions are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_briefGet the writing briefARead-onlyInspect
The writing brief for a deck whose outline is already saved.
| Name | Required | Description | Default |
|---|---|---|---|
| deck_id | Yes | ||
| guest_token | No | Only for a deck created WITHOUT an account: the guest_token create_deck returned. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint annotation covers the safety profile, and the description adds a useful precondition: the outline must already be saved. It does not describe what happens if that precondition is unmet or what the response contains, but this is a simple read operation.
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?
One short sentence that leads with the resource and includes the key precondition; 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?
For a low-complexity, read-only tool with the parameter schema present, the description plus annotations cover the main usage context. The only notable omission is the lack of any hint about return content, but the title already conveys the core purpose.
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 documents guest_token's purpose and constraints, while deck_id is only type/length constrained. The description adds no parameter-level detail to compensate for the 50% schema coverage, so it adds little 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 title and description identify the resource as 'the writing brief' for a saved deck outline, which distinguishes it from siblings like see_deck and write_outline. It lacks an explicit verb in the description itself, relying on the title for the action.
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 'whose outline is already saved' implies this is meant to be called after write_outline, but it never explicitly says when to use it over see_deck or other deck tools. It also does not state exclusions or alternative tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_decksList my decksARead-onlyInspect
The user's Renderball documents, newest first, with editor links. Needs an account (a key).
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The readOnlyHint annotation already signals a safe read operation, and the description adds meaningful behavior beyond that: results are newest-first and include editor links, and authentication is required. It does not mention pagination or rate limits, but for a zero-parameter read tool this is a minor gap.
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: it opens with the core output, then states the one key prerequisite. There is no filler or repetition of the annotation; each fragment 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?
Given no output schema, the description does enough by stating what is returned (documents, editor links) and the ordering rule (newest first). It also covers the authentication prerequisite. It could be more explicit about the shape of each deck entry, but for a simple list tool this is sufficiently complete.
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?
There are no parameters, so schema coverage is effectively 100% and the description has nothing to add about parameter meaning. The baseline of 4 for a parameterless tool is appropriate; the description correctly focuses on behavior and output rather than inputs.
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 identifies the resource ("The user's Renderball documents") and adds useful output details: newest first, with editor links. The title supplies the explicit "list" verb, and this is distinguishable from siblings like see_deck because it refers to the full set of decks rather than a single one.
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 an important precondition ("Needs an account (a key)") and implies use whenever the user wants their own decks in reverse chronological order. It does not explicitly state when to use this tool over siblings or when not to use it, so the guidance is context only, not exclusionary.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
see_deckSee the rendered pagesARead-onlyInspect
The deck's rendered pages as images, page 1 first — look at them for overlapping or clipped text, odd spacing or an element off its page, then fix the file and submit_deck again. Available once the deck has been submitted.
| Name | Required | Description | Default |
|---|---|---|---|
| deck_id | Yes | ||
| guest_token | No | Only for a deck created WITHOUT an account: the guest_token create_deck returned. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Beyond the readOnlyHint annotation, the description adds that the output is a set of page images in order, and that it exposes rendering quality issues. It also discloses the availability precondition. This is useful behavioral context, though it does not detail response format or page-count behavior.
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 substantive sentence followed by a necessary availability condition. Every clause earns its place, and the inspection-purpose is front-loaded before the workflow instruction.
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 2-parameter, read-only visual inspection tool, the description gives the output type, ordering, the availability gate, and the recommended follow-up action. It lacks explicit return-value details, but the absence of an output schema makes the current level mostly sufficient.
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 50%, with guest_token documented but deck_id not. The tool description provides no additional meaning for either parameter, such as clarifying that deck_id must refer to a submitted deck. The precondition indirectly implies which deck to pass, but that is not enough to compensate for the 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 clear verb and resource: the tool returns the deck's rendered pages as images, page 1 first. It also frames the purpose as visual QA (checking overlap, clipping, spacing), which distinguishes it from sibling tools like submit_deck and create_deck.
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 says the tool is 'available once the deck has been submitted' and prescribes a follow-up workflow: inspect the images, fix the file, then call submit_deck again. It does not explicitly list when not to use it, but the precondition and workflow give clear enough context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
submit_deckSubmit the deck fileAInspect
Send the complete deck file you wrote. Renderball checks it against the brief, repairs small slips, renders every page and opens it in the editor. Returns 'ready' with the editor_url, or 'importing' — then poll deck_status.
| Name | Required | Description | Default |
|---|---|---|---|
| label | No | Who wrote it, e.g. 'claude-code'. Shown in the deck's trace. | |
| source | Yes | The complete deck file, exactly as the writing brief specifies. Raw file or a ```tsx fenced block. | |
| deck_id | Yes | ||
| guest_token | No | Only for a deck created WITHOUT an account: the guest_token create_deck returned. | |
| wait_seconds | No | How long to wait for the import before returning (default 25). Use deck_status to keep checking. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations are minimal (readOnlyHint: false, destructiveHint: false), so the description carries the full behavioral burden and delivers: validation of the deck against the brief, automatic repair of small slips, rendering, opening in the editor, and the two return states (ready with editor_url, or importing). This exposes side effects and asynchronous behavior that the structured fields do not.
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 action, the processing pipeline, and the return contract. The core verb is front-loaded ('Send the complete deck file you wrote') before behavioral details, and there is zero filler or repetition of schema content.
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 5-parameter, no-output-schema, asynchronous tool, the description covers the main workflow and return contract, and correctly points to deck_status for polling. It does not disclose failure/error behavior (e.g., what happens if the deck badly fails the brief check) and leaves 'repairs small slips' vague, but the essential invocation and post-call flow are sufficiently explained.
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 80% (only deck_id lacks a description), setting the baseline at 3. The description adds some value beyond the schema—tying 'the complete deck file you wrote' to source and implying the brief-compliance constraint of source—but it does not clarify deck_id, label, guest_token, or the wait_seconds/importing relationship beyond what the schema already states.
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+resource ('Send the complete deck file') and then differentiates itself through a unique pipeline: checks against the brief, repairs slips, renders every page, opens in the editor, and returns ready/importing states. None of the siblings (create_deck, write_outline, deck_status, see_deck) claim this submit-and-import behavior, so an agent can distinguish 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?
The description gives clear usage context ('Send the complete deck file you wrote', 'checks it against the brief') implying the tool is used after authoring and after a brief exists. It also explicitly routes to the sibling deck_status with 'then poll deck_status' for the importing case. It lacks explicit when-not-to-use exclusions (e.g., don't call it before create_deck, or before the deck is complete), so it falls just short of the 5 bar.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
write_outlineWrite the outlineAInspect
Save the page-by-page outline you wrote for a deck. Returns the WRITING BRIEF: the exact instructions for writing the deck file (format, brand facts, truth rules). Follow it, then call submit_deck.
| Name | Required | Description | Default |
|---|---|---|---|
| tone | No | The register, e.g. 'confident, technical, CTO-to-CTO'. | |
| pages | Yes | ||
| deck_id | Yes | ||
| guest_token | No | Only for a deck created WITHOUT an account: the guest_token create_deck returned. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate this is a non-read-only, non-destructive operation. The description adds that the tool returns a WRITING BRIEF and instructs the agent to follow it, which is useful. However, it does not disclose side effects (e.g., whether repeated calls overwrite the outline), authentication requirements, or failure behavior. It is consistent 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?
Three crisp sentences: action first, return value second, next step third. No redundant phrases; 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?
The description explains the return value and next step, which is important given no output schema. But it omits prerequisites (must have a valid deck_id from create_deck, or guest_token for anonymous decks) and any error conditions, leaving the agent to infer the workflow from sibling tool names. For a tool with a complex pages schema and no output schema, this is a noticeable 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 50%, and the description does not compensate. It adds minimal meaning only for pages ('page-by-page') and deck ('for a deck'), while saying nothing about the optional tone or guest_token parameters, both of which lack clear semantics in the description. The two required parameters (deck_id, pages) have no top-level schema descriptions, and the description does not clarify them.
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 ('Save') and resource ('page-by-page outline for a deck'), and clarifies it returns the WRITING BRIEF. It distinguishes from sibling submit_deck by explicitly positioning it as the step before submission, and from create_deck by focusing on saving an existing outline.
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 clear workflow context: save the outline, get the WRITING BRIEF, follow it, then call submit_deck. It names the next sibling explicitly, but does not state exclusions or alternatives (e.g., when to use get_brief instead) or prerequisites like having called create_deck first.
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.
8 tool updates
- First observed
create_deck - First observed
deck_status - First observed
get_brief - First observed
list_decks - First observed
see_deck - First observed
share_deck - First observed
submit_deck - First observed
write_outline
Related MCP Connectors
Design mobile-first presentations — create, edit, preview, and publish from your AI.
Generate, edit, and export AI presentations to PDF, PPTX, or a shareable link.
Deterministic, fully editable PowerPoint from typed slide intents. 200+ layouts, brand templates.
Presentations.AI MCP server — create designed slide decks from a topic, text, or document.
Related MCP Servers
- MIT
- AlicenseAqualityFmaintenanceGenerate professional AI-powered presentations from a topic, raw text, or document file. Export to PPTX, PDF, image, or shareable link.51MIT
- AlicenseNot gradedqualityBmaintenanceGenerate executive-ready presentations via API. 32 slide types, 24 chart types, 15 themes, finance vertical with DCF/comp tables/waterfalls. Renders PPTX from JSON IR or natural language prompts.7MIT
- AlicenseNot gradedqualityFmaintenanceCreates professional Slidev presentations with automated Git-based backup and recovery protection. Features built-in themes, interactive charts, component library, and AI-powered content generation with automatic version control.2MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.