keynote-mcp

easychen/keynote-mcp

3.4

If you are the rightful owner of keynote-mcp and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

A Model Context Protocol (MCP) server that enables AI assistants to control Keynote presentations through AppleScript automation.

Keynote-MCP

https://github.com/user-attachments/assets/fb293e54-0795-434f-a811-7f850d36619f

โš ๏ธ Development Notice: This project was developed using Cursor AI without human code review. It's provided for educational and experimental purposes only. Please use with caution in production environments and conduct thorough testing before deployment.

A Model Context Protocol (MCP) server that enables AI assistants to control Keynote presentations through AppleScript automation.

|

โœจ Features

  • ๐ŸŽจ Complete Presentation Management - Create, open, save, and close presentations
  • ๐Ÿ“Š Rich Slide Operations - Add, delete, duplicate, and move slides
  • ๐Ÿ“ Powerful Content Management - Add text, images, shapes, tables, and charts
  • ๐Ÿ“ธ Flexible Export Options - Screenshot slides, export to PDF and images
  • ๐Ÿ–ผ๏ธ Unsplash Integration - Automatically search and add high-quality images
  • ๐Ÿ”’ Secure & Reliable - Comprehensive error handling and permission management
  • ๐Ÿงช Well Tested - Unit and integration test coverage

๐Ÿš€ Quick Start

Prerequisites

  • macOS 10.14 or later
  • Keynote application
  • Python 3.8 or later

Installation

  1. Clone the repository

    git clone https://github.com/easychen/keynote-mcp.git
    cd keynote-mcp
    
  2. Install dependencies

    pip install -r requirements.txt
    
  3. Configure environment (optional for Unsplash features)

    cp env.example .env
    # Edit .env file and add your Unsplash API key
    
  4. Set up macOS permissions

    • Go to System Preferences > Security & Privacy > Privacy
    • Add Terminal and Python to Accessibility permissions
    • Add Python to Automation permissions for Keynote

Usage with MCP Clients

Gemini CLI Configuration

Add this configuration to your MCP client:

{
  "KeynoteServer": {
    "command": "python",
    "args": ["start_server.py"],
    "env": {
      "UNSPLASH_KEY": "your_unsplash_api_key_here"
    },
    "cwd": "/path/to/keynote-mcp",
    "timeout": 5000
  }
}
Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "keynote": {
      "command": "python",
      "args": ["/path/to/keynote-mcp/start_server.py"],
      "env": {
        "UNSPLASH_KEY": "your_unsplash_api_key_here"
      }
    }
  }
}
Other MCP Clients

For other MCP-compatible clients, use these connection details:

  • Command: python
  • Args: ["start_server.py"]
  • Working Directory: /path/to/keynote-mcp
  • Environment: {"UNSPLASH_KEY": "your_api_key"} (optional)

๐Ÿ“– Available Tools

The server provides comprehensive tools for Keynote automation:

๐ŸŽจ Presentation Management

  • Create, open, save, and close presentations
  • Set themes and get presentation information
  • List all open presentations

๐Ÿ“Š Slide Operations

  • Add, delete, duplicate, and move slides
  • Set slide layouts and get slide information
  • Navigate between slides

๐Ÿ“ Content Management

  • Add text boxes, titles, and subtitles
  • Insert images from files or Unsplash
  • Create bullet lists and numbered lists
  • Add code blocks and quotes

๐Ÿ“ธ Export & Screenshot

  • Take screenshots of individual slides
  • Export presentations to PDF
  • Export as image sequences

๐Ÿ–ผ๏ธ Unsplash Integration (Optional)

  • Search high-quality images
  • Automatically add images to slides
  • Support for different orientations and styles

๐Ÿ’ก Usage Examples

Once connected to your MCP client, you can use natural language to control Keynote:

  • "Create a new presentation about AI trends"
  • "Add a slide with the title 'Machine Learning Basics'"
  • "Insert an image about technology on slide 2"
  • "Export the presentation as PDF"

๐Ÿ”ง Unsplash Configuration (Optional)

To use Unsplash image features:

  1. Get API Key: Visit Unsplash Developers
  2. Configure: Add your API key to the .env file:
    UNSPLASH_KEY=your_unsplash_access_key_here
    

๐Ÿ“š Documentation

  • - Detailed setup instructions
  • - API reference and architecture
  • - Usage examples and demos

๐Ÿค Contributing

We welcome contributions! Please see for details on how to get started.

๐Ÿ“„ License

This project is licensed under the MIT License - see the file for details.

๐Ÿ† Acknowledgments

๐Ÿ“ž Contact

โญ Support

If this project helps you, please give it a โญ๏ธ!


Empowering AI assistants to create and manage Keynote presentations effortlessly.