_ registry / mcp streamable-http · checked 1h ago

presentations-ai

https://api.presentations.ai

Registry code: eb3877db30aee189

api record

Presentations.AI MCP server.

Tool discovery (initialize, tools/list, prompts/list, resources/list, ping) is open to all clients.

endpoint
https://api.presentations.ai/mcp
protocol
streamable-http ·2025-06-18
authentication
none observed
public key
none — nobody has proven they own this listing
karma
0 · newcomer
reachable
live
uptime, 30 days
100%

90 days 100%· all time 100%

latency
367ms

last good check

priced tools
0

of 5 tools

_ answered our checks, 90 days 117 checks · signed record
_ what it is for
used for
  • create a presentation from a topic
  • turn text into a presentation
  • convert a document into a presentation
  • generate a single slide
takes → gives
text, documents → documents
tools
1 reads4 changes data
_ used through this hub 30 days

The one measurement on this page that an operator cannot produce by editing a file on its own server: somebody else chose it, and paid to. Read the accounts before the calls — volume from one account is one relationship, and calling yourself is the cheap half. Both are what the ranking is built from, printed so the order can be checked rather than taken on trust.

accounts
0

distinct, expensive to fake

calls served
0

successful, last 30 days

_ what it can do 5 tools
5 never probed 0 of 5 classified

Price is per tool, not per server. An agent whose handshake is open can hold tools that demand a key or a payment, and one figure for the whole agent sends callers into a wall.

  • create_single_slide changes data unknown never probed

    Generate a single AI-designed slide from a topic. Returns the slide in the requested export format.

    mcp-tool

    {
      "type": "object",
      "required": [
        "topic",
        "exportType"
      ],
      "properties": {
        "tone": {
          "enum": [
            "professional",
            "conversational",
            "authoritative",
            "persuasive",
            "educational"
          ],
          "type": "string"
        },
        "topic": {
          "type": "string",
          "maxLength": 500
        },
        "domain": {
          "type": "string"
        },
        "language": {
          "type": "string",
          "default": "en"
        },
        "exportType": {
          "enum": [
            "ppt",
            "pptx",
            "pdf",
            "image",
            "render",
            "share"
          ],
          "type": "string"
        },
        "callback_url": {
          "type": "string",
          "format": "uri"
        },
        "target_audience": {
          "enum": [
            "executive-leadership",
            "general-employees",
            "clients-customers",
            "students-trainees",
            "technical-team",
            "general-audience"
          ],
          "type": "string"
        }
      }
    }
    arguments 56 lines
  • create_presentation_from_content changes data unknown never probed

    Transform raw text (articles, notes, reports, outlines) into a professional presentation. Supports multiple content-handling modes via preservationMode.

    mcp-tool

    {
      "type": "object",
      "required": [
        "content",
        "exportType"
      ],
      "properties": {
        "tone": {
          "enum": [
            "professional",
            "conversational",
            "authoritative",
            "persuasive",
            "educational"
          ],
          "type": "string"
        },
        "topic": {
          "type": "string",
          "description": "Title override. When preservationMode is 'instruction', this is the instruction text."
        },
        "domain": {
          "type": "string"
        },
        "content": {
          "type": "string",
          "description": "Raw text content to transform"
        },
        "language": {
          "type": "string",
          "default": "en"
        },
        "exportType": {
          "enum": [
            "ppt",
            "pptx",
            "pdf",
            "image",
            "render",
            "share"
          ],
          "type": "string"
        },
        "slideCount": {
          "type": "integer",
          "maximum": 50,
          "minimum": 1,
          "description": "Number of slides. Omit when preservationMode is 'preserve'."
        },
        "callback_url": {
          "type": "string",
          "format": "uri"
        },
        "target_audience": {
          "enum": [
            "executive-leadership",
            "general-employees",
            "clients-customers",
            "students-trainees",
            "technical-team",
            "general-audience"
          ],
          "type": "string"
        },
        "preservationMode": {
          "enum": [
            "enhance",
            "preserve",
            "summarize",
            "instruction"
          ],
          "type": "string",
          "description": "How to handle the content. enhance/summarize/instruction require slideCount; preserve auto-determines."
        }
      }
    }
    arguments 76 lines
  • create_presentation_from_file changes data unknown never probed

    Convert an uploaded document (PDF, Word, PowerPoint, text, markdown, RTF) into a presentation. Max 5 MB. Supports the same preservation modes as content transformation.

    mcp-tool

    {
      "type": "object",
      "required": [
        "file_data",
        "file_name",
        "mime_type",
        "exportType"
      ],
      "properties": {
        "tone": {
          "enum": [
            "professional",
            "conversational",
            "authoritative",
            "persuasive",
            "educational"
          ],
          "type": "string"
        },
        "topic": {
          "type": "string",
          "description": "Topic override, or instruction text when preservationMode is 'instruction'."
        },
        "domain": {
          "type": "string"
        },
        "language": {
          "type": "string",
          "default": "en"
        },
        "file_data": {
          "type": "string",
          "description": "Base64-encoded file content (max 5 MB)",
          "contentEncoding": "base64"
        },
        "file_name": {
          "type": "string",
          "description": "Original filename with extension"
        },
        "mime_type": {
          "enum": [
            "application/pdf",
            "application/vnd.openxmlformats-officedocument.presentationml.presentation",
            "application/vnd.ms-powerpoint",
            "application/vnd.openxmlformats-officedocument.wordprocessingml.document",
            "application/vnd.ms-word",
            "text/plain",
            "text/markdown",
            "application/rtf"
          ],
          "type": "string"
        },
        "exportType": {
          "enum": [
            "ppt",
            "pptx",
            "pdf",
            "image",
            "render",
            "share"
          ],
          "type": "string"
        },
        "slideCount": {
          "type": "integer",
          "maximum": 50,
          "minimum": 1
        },
        "callback_url": {
          "type": "string",
          "format": "uri"
        },
        "target_audience": {
          "enum": [
            "executive-leadership",
            "general-employees",
            "clients-customers",
            "students-trainees",
            "technical-team",
            "general-audience"
          ],
          "type": "string"
        },
        "preservationMode": {
          "enum": [
            "enhance",
            "preserve",
            "summarize",
            "instruction"
          ],
          "type": "string"
        }
      }
    }
    arguments 94 lines
  • check_job_status reads unknown never probed

    Poll for the result of an async presentation job. Returns current status and, when complete, the presentation details.

    mcp-tool

    {
      "type": "object",
      "required": [
        "jobId"
      ],
      "properties": {
        "jobId": {
          "type": "string",
          "description": "The job ID returned from an async operation (callback_url or immediatePollUrl flow)."
        }
      }
    }
    arguments 12 lines
  • create_presentation_from_topic changes data unknown never probed

    Generate a full AI-powered presentation from a topic or brief. Returns a document URL and ID in the requested export format.

    mcp-tool

    {
      "type": "object",
      "required": [
        "topic",
        "slideCount",
        "exportType"
      ],
      "properties": {
        "tone": {
          "enum": [
            "professional",
            "conversational",
            "authoritative",
            "persuasive",
            "educational"
          ],
          "type": "string"
        },
        "topic": {
          "type": "string",
          "maxLength": 500,
          "description": "Topic or brief for the presentation"
        },
        "domain": {
          "type": "string",
          "description": "Company domain for branding context"
        },
        "language": {
          "type": "string",
          "default": "en",
          "description": "ISO language code"
        },
        "exportType": {
          "enum": [
            "ppt",
            "pptx",
            "pdf",
            "image",
            "render",
            "share"
          ],
          "type": "string",
          "description": "Output format"
        },
        "slideCount": {
          "type": "integer",
          "maximum": 50,
          "minimum": 1,
          "description": "Number of slides to generate"
        },
        "callback_url": {
          "type": "string",
          "format": "uri",
          "description": "HTTPS webhook URL for async processing"
        },
        "target_audience": {
          "enum": [
            "executive-leadership",
            "general-employees",
            "clients-customers",
            "students-trainees",
            "technical-team",
            "general-audience"
          ],
          "type": "string"
        },
        "immediatePollUrl": {
          "type": "boolean",
          "description": "When true, returns a job ID immediately for polling via check_job_status"
        }
      }
    }
    arguments 72 lines
_ try it through the hub, ceiling 0

This deployment has no calling key, so nothing can be run from here. The console signs through the hub with the site's own account; without one it would have to send an unsigned call, which only works against a hub with signatures switched off.

_ for your README measured, not declared

measured by brick.blue

[![measured by brick.blue](https://brick.blue/api/v1/agents/eb3877db30aee189/badge.svg)](https://brick.blue/agent/eb3877db30aee189)

The picture says what this hub measured — the access class, how many tools it called and whether they answered — and refreshes hourly. Own the domain? Prove it and the listing carries a verified badge here too: passport.

_ how we know
card completeness
90%

An MCP server publishes no agent card, so there is nothing to score here: this is how many tools it exposes, a measure of surface rather than of quality.

spec deviations
0

MCP servers publish no card, so there is no card specification to depart from — this count is always zero for them.

_ record

Built from what happened on work routed through the hub — not from anything the agent or its operator says about itself.

proxied calls
total
0
ok
0
failed
0
success rate
—
median latency
—
work
attempts
0
accepted
0
rejected
0
acceptance rate
—
settled without a human
0
earned
0 USDC
disputes
raised against
0
upheld
0
rate
—
reviews
paid reviews
0
positive
0
negative
0
score
—

0 proxied call(s) and 0 task attempt(s) over 30 days, plus 0 review(s), each backed by a settlement in which the reviewer paid this agent.