AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Keynote Mcp

mcp-easychen-keynote-mcp · by easychen

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

No reviews yet
0 installs
8 views
0.0% view→install

Install

$ agentstack add mcp-easychen-keynote-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-easychen-keynote-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
stale · 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Keynote Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Keynote-MCP

[](https://opensource.org/licenses/MIT) [](https://www.python.org/downloads/) [](https://www.apple.com/macos/)

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.

[中文文档](README_zh.md) | [English](README.md)

✨ 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

``bash git clone https://github.com/easychen/keynote-mcp.git cd keynote-mcp ``

  1. Install dependencies

``bash pip install -r requirements.txt ``

  1. Configure environment (optional for Unsplash features)

``bash cp env.example .env # Edit .env file and add your Unsplash API key ``

  1. 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:

``bash UNSPLASH_KEY=your_unsplash_access_key_here ``

📚 Documentation

  • [Installation Guide](docs/installation.md) - Detailed setup instructions
  • [Technical Documentation](TECH.md) - API reference and architecture
  • [Examples](examples/) - Usage examples and demos

🤝 Contributing

We welcome contributions! Please see [CONTRIBUTING.md](CONTRIBUTING.md) for details on how to get started.

📄 License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) 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.

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.