Skip to main content
Glama

Presentations.AI MCP Server

Official Model Context Protocol server for Presentations.AI. Create designed slide decks from a topic, text, or document via any MCP-compatible client.

Endpoint

https://api.presentations.ai/mcp

Property

Value

Transport

Streamable HTTP

Authentication

OAuth 2.0 with PKCE + Dynamic Client Registration

Protocol version

2025-06-18

A Presentations.AI account is required. The server opens a browser for sign-in on first connect; no API key handling on the client side.

Related MCP server: Alai

Tools

Tool

Purpose

create_presentation_from_topic

Full deck from a topic / brief

create_single_slide

A single designed slide on a topic (image)

create_presentation_from_content

Deck from raw text — article, notes, transcript

create_presentation_from_file

Deck from PDF, DOCX, PPTX, TXT, or MD (≤ 5 MB)

check_job_status

Poll long-running async jobs

For exact parameter shapes and exports (pptx, pdf, image, share, render), see the REST + MCP reference.

Connect from your MCP client

Support

support@presentations.ai

License

MIT — see LICENSE.

Available Tools

5 tools
check_job_statusAInspect

Poll for the result of an async presentation job. Use after any create_* call that returned a jobId. Safe to call repeatedly; does not consume job state. Recommended cadence: wait 55-60 seconds before the first poll, then every 30-35 seconds. Most jobs complete within 2 minutes. When status is 'completed', the response includes docurl (viewer link), docid (numeric ID), and optionally animated_url and thumbnailUrl. When status is 'failed', the response includes an error field. While 'processing', keep polling.

ParametersJSON Schema
NameRequiredDescriptionDefault
jobIdYesThe job ID returned from a create_* call when immediatePollUrl=true or when callback_url was omitted.

TDQS

A4.6/5.0
Behavior5/5

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

Discloses that it's safe to call repeatedly, does not consume job state. Details response fields for each status (completed, failed, processing). No annotations provided, so description carries full burden and does it well.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Paragraph is well-structured and front-loaded with purpose. Each sentence adds value. Could be slightly more concise but is efficient overall.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one param, no output schema), the description covers purpose, usage, behavior, and response fields completely. No gaps.

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

Parameters4/5

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

Only parameter jobId has schema description 'The job ID returned from a create_* call when immediatePollUrl=true or when callback_url was omitted.' Schema coverage 100%, but description adds context about where jobId comes from, adding value beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states 'Poll for the result of an async presentation job' and specifies it's used after any create_* call that returned a jobId. This distinguishes it from sibling create tools.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'Use after any create_* call that returned a jobId' and provides recommended polling cadence (55-60s first, then 30-35s). No explicit when-not, but context is clear.

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

create_presentation_from_contentAInspect

Transform raw text (articles, notes, transcripts, reports, outlines) into a polished presentation. Use when the caller has prose or notes already and wants a deck built from that source material. Honor preservationMode: 'preserve' keeps the structure and auto-counts slides, 'enhance' rewrites for clarity, 'summarize' condenses, 'instruction' uses topic as a directive. For file uploads (PDF/DOCX/PPTX) use create_presentation_from_file. Returns a job ID; poll check_job_status.

ParametersJSON Schema
NameRequiredDescriptionDefault
contentYesRaw text content (markdown supported). The source material the deck is built from.
exportTypeYesOutput format. See create_presentation_from_topic for options.
preservationModeNoHow to handle the content. 'enhance'/'summarize'/'instruction' require slideCount; 'preserve' auto-determines slide count. Defaults to 'enhance'.
slideCountNoNumber of slides. Omit when preservationMode is 'preserve' (auto). Required for all other modes.
topicNoTitle override, or instruction text when preservationMode is 'instruction'.
languageNoISO 639-1 language code. Defaults to 'en'.
domainNoCompany domain for branding context.
target_audienceNoAudience profile.
toneNoVoice and register.
callback_urlNoHTTPS webhook posted when the job finishes.

TDQS

A4.7/5.0
Behavior4/5

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

No annotations provided, so description carries full burden. It discloses that the tool returns a job ID and suggests polling check_job_status, but does not cover auth requirements or potential side effects. Still, the async nature is clearly communicated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single paragraph with front-loaded purpose, each sentence earns its place. No redundancy or verbosity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers main purpose, usage, parameter behaviors, return value (job ID), and sibling distinction. Lacks examples for callback_url or further detail on output, but overall sufficient for an async creation tool.

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

Parameters5/5

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

Schema coverage is 100%, but description adds significant extra context: details on preservationMode (which modes require slideCount), topic override vs instruction, and cross-reference to create_presentation_from_topic for exportType options.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool transforms raw text into a polished presentation, specifies the use case (caller has prose/notes), and distinguishes from sibling tools like create_presentation_from_file for file uploads.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says when to use (when caller has prose/notes) and when not (for file uploads use create_presentation_from_file). Also explains preservationMode behaviors and dependencies.

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

create_presentation_from_fileAInspect

Convert an uploaded document (PDF, Word, PowerPoint, plain text, markdown, RTF) into a presentation. Use when the caller already has a source document. Max 5 MB after base64 encoding. Supports the same preservation modes as create_presentation_from_content. For pasted raw text use create_presentation_from_content. Returns a job ID; poll check_job_status.

ParametersJSON Schema
NameRequiredDescriptionDefault
file_dataYesBase64-encoded file contents. Max 5 MB encoded size.
file_nameYesOriginal filename including extension.
mime_typeYesMIME type of the source document. Must match the file extension.
exportTypeYesOutput format. See create_presentation_from_topic for options.
preservationModeNoHow to handle the content. 'preserve' auto-counts slides; other modes need slideCount.
slideCountNoNumber of slides. Required unless preservationMode is 'preserve'.
topicNoTitle override, or instruction text when preservationMode is 'instruction'.
languageNoISO 639-1 language code. Defaults to 'en'.
domainNoCompany domain for branding context.
target_audienceNoAudience profile.
toneNoVoice and register.
callback_urlNoHTTPS webhook posted when the job finishes.

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations, the description provides key behavioral details: max size 5 MB, supports preservation modes, returns a job ID, and requires polling. Lacks mention of any destructive side effects, but creation tools typically imply mutation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences cover all critical points: purpose, usage guidance, constraints, and follow-up steps. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 12 parameters (mostly optional) and no output schema, the description covers essential behavioral aspects: size limit, return type, polling, and references to sibling for options. Could mention error handling or example, but sufficient for an experienced agent.

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

Parameters4/5

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

Schema coverage is 100%, baseline 3. Description adds value beyond schema: size limit for file_data, match requirement for mime_type, references to sibling tool for preservationMode and exportType options, and notes on slideCount dependency.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Convert an uploaded document ... into a presentation,' listing supported file types. It distinguishes from sibling tool 'create_presentation_from_content' by noting the different input method.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use: 'Use when the caller already has a source document.' Provides clear alternative: 'For pasted raw text use create_presentation_from_content.' Also mentions polling via check_job_status.

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

create_presentation_from_topicAInspect

Generate a full AI-powered presentation from a topic or brief. Use when the caller has a subject line, headline, or short brief and wants a complete deck. Returns a job ID for async processing; poll check_job_status until status is completed, then use the returned docurl. For a single hero slide instead of a deck, use create_single_slide.

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesTopic, headline, or short brief that drives the deck.
slideCountYesNumber of slides to generate (1-50).
exportTypeYesOutput format. Use 'share' for a viewer URL, 'pptx' for editable PowerPoint, 'pdf' for read-only, 'image' for thumbnails, 'render' for HTML.
languageNoISO 639-1 language code (e.g. 'en', 'es'). Defaults to 'en'.
domainNoCompany domain (e.g. 'acme.com') for branding context.
target_audienceNoAudience profile that shapes vocabulary and depth.
toneNoVoice and register of the generated copy.
callback_urlNoHTTPS webhook the API will POST to when the job finishes. Mutually exclusive with polling.
immediatePollUrlNoWhen true, returns a jobId immediately for polling via check_job_status. When false, blocks until generation completes.

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations, the description carries full burden. It discloses the async behavior: returns a job ID, poll via check_job_status, then use docurl. It does not detail failure modes, authentication needs, or rate limits, but the core behavioral flow is well explained.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is four sentences, each adding essential information: what the tool does, when to use it, how the async flow works, and an alternative. No fluff, and critical details are front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex tool with 9 parameters, no annotations, no output schema, and sibling tools, the description provides a complete picture: usage context, async flow with polling, and alternative tool. It covers the key aspects an agent needs to invoke and manage the tool correctly.

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

Parameters3/5

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

The input schema already provides 100% coverage with descriptions for all 9 parameters. The description does not add additional meaning beyond the schema—it mentions topic, slideCount, etc., but that matches schema descriptions. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's action: 'Generate a full AI-powered presentation from a topic or brief.' It specifies the resource (presentation) and scope (from topic/brief), and distinguishes from sibling tool create_single_slide by noting when to use the alternative.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit when-to-use: 'Use when the caller has a subject line, headline, or short brief and wants a complete deck.' It also provides an alternative: 'For a single hero slide instead of a deck, use create_single_slide.' Additionally, it explains the async processing flow and directs to check_job_status for polling.

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

create_single_slideAInspect

Generate a single AI-designed slide from a topic. Use for hero slides, social-media graphics, or one-off visuals. For a full multi-slide deck, use create_presentation_from_topic. Returns a job ID; poll check_job_status until status is completed. Faster than full-deck generation (typically 20-40 seconds).

ParametersJSON Schema
NameRequiredDescriptionDefault
topicYesSubject of the slide.
exportTypeYesOutput format. 'image' gives a PNG, 'pptx' an editable slide, 'share' a viewer URL.
languageNoISO 639-1 language code. Defaults to 'en'.
domainNoCompany domain for branding context.
target_audienceNoAudience profile.
toneNoVoice and register.
callback_urlNoHTTPS webhook posted when the job finishes.

TDQS

A4.7/5.0
Behavior5/5

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

Discloses async behavior (returns job ID, poll check_job_status), typical completion time (20-40 seconds), and faster-than-full-deck nature. No annotations provided, so description carries full burden and does well.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Three sentences, front-loaded with purpose, no redundant words. Every sentence adds value: purpose, use cases, sibling alternative, async mechanics, and speed comparison.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Covers purpose, usage, async behavior, polling instruction, timing, and sibling distinction. Without output schema, description appropriately explains what to expect (job ID) and how to use it. Complete for the tool's complexity.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents parameters thoroughly. Description adds context about return value (job ID) but does not add new parameter-specific semantics beyond schema. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Clear verb 'Generate' and specific resource 'a single AI-designed slide from a topic'. Lists use cases (hero slides, social-media graphics, one-off visuals) and distinguishes from sibling tool create_presentation_from_topic for multi-slide decks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use (hero slides, social-media graphics, one-off visuals) and when not (full multi-slide deck, directing to create_presentation_from_topic). Clear guidance.

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

TDQS

A4.7/5.0
Disambiguation5/5

Each creation tool has a distinct input type (raw text, file, topic, single slide) with explicit cross-references in descriptions, making selection unambiguous. The polling tool is clearly separate and serves all creation tools.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case (check_job_status, create_presentation_from_content, etc.), with verbs 'check' and 'create' and nouns describing the input or target.

Tool Count5/5

Five tools cover all essential creation pathways (content, file, topic, single slide) plus async polling, which is well-scoped for a presentation generation server without unnecessary bloat.

Completeness5/5

The set provides complete coverage for generating presentations from various sources and checking results. No obvious gaps exist for its stated purpose of AI-powered presentation creation.

Maintenance

ActivityStale
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/slidecraft-in/presentations-ai-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server