Skip to main content
Glama
vancealexander

Cross-Platform PowerPoint MCP Server

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
initialize_powerpointB
Initialize connection to PowerPoint.

Returns:
    Status of initialization and platform information
get_presentationsB

Get a list of all open PowerPoint presentations with their metadata.

open_presentationB
Open a PowerPoint presentation from the specified path.

Args:
    path: Full path to the PowerPoint file (.pptx, .ppt)

Returns:
    Dictionary with presentation ID and metadata
get_slidesC
Get a list of all slides in a presentation.

Args:
    presentation_id: ID of the presentation

Returns:
    List of slide metadata
get_slide_textB
Get all text content in a slide.

Args:
    presentation_id: ID of the presentation
    slide_id: ID of the slide (integer)

Returns:
    Dictionary containing text content organized by shape
update_textC
Update the text content of a shape.

Args:
    presentation_id: ID of the presentation
    slide_id: ID of the slide (numeric string)
    shape_id: ID of the shape (numeric string)
    text: New text content

Returns:
    Status of the operation
save_presentationB
Save a presentation to disk.

Args:
    presentation_id: ID of the presentation
    path: Optional path to save the file (if None, save to current location)

Returns:
    Status of the operation
close_presentationC
Close a presentation.

Args:
    presentation_id: ID of the presentation
    save: Whether to save changes before closing

Returns:
    Status of the operation
create_presentationB
Create a new PowerPoint presentation.

Returns:
    Dictionary containing new presentation ID and metadata
add_slideA
Add a new slide to the presentation.

Args:
    presentation_id: ID of the presentation
    layout_type: Slide layout type (default is 1, title slide)
        1: ppLayoutTitle (title slide)
        2: ppLayoutText (slide with title and text)
        3: ppLayoutTwoColumns (two-column slide)
        7: ppLayoutBlank (blank slide)
        etc...

Returns:
    Information about the new slide
add_text_boxA
Add a text box to a slide and set its text content.

Args:
    presentation_id: ID of the presentation
    slide_id: ID of the slide (numeric string)
    text: Text content
    left: Left edge position of the text box (points)
    top: Top edge position of the text box (points)
    width: Width of the text box (points)
    height: Height of the text box (points)

Returns:
    Operation status and ID of the new shape
set_slide_titleB
Set the title text of a slide.

Args:
    presentation_id: ID of the presentation
    slide_id: ID of the slide (numeric string)
    title: New title text

Returns:
    Status of the operation
get_platform_infoB
Get information about the current platform and available PowerPoint adapters.

Returns:
    Platform and adapter information

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.4/5.0

Scored across 13 tools

Disambiguation4/5

Most tools have distinct purposes, but there is some overlap between add_text_box and update_text that could cause confusion. add_text_box creates a new text box with content, while update_text modifies existing text in a shape, but both involve text manipulation on slides. Other tools like create_presentation, open_presentation, and close_presentation are clearly differentiated.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern using snake_case, such as add_slide, get_slides, and save_presentation. The naming is predictable and uniform throughout the set, making it easy for agents to understand the action and target.

Tool Count5/5

With 13 tools, the server is well-scoped for PowerPoint operations, covering presentation lifecycle, slide management, and text editing. Each tool serves a clear purpose without redundancy, and the count is appropriate for the domain, allowing comprehensive control without being overwhelming.

Completeness4/5

The tool set provides strong coverage for core PowerPoint tasks, including CRUD operations for presentations and slides, and text manipulation. However, there are minor gaps, such as missing tools for adding images, shapes, or charts, and no direct way to delete slides or shapes, which agents might need to work around.

Maintenance

ActivityInactive
ResponsivenessNo issues