io.github.alxpark/propresenter-mcp

平台与服务

by alxpark

用于连接和操作 ProPresenter 7 的 MCP 服务器,方便 AI 助手集成演示控制相关能力。

什么是 io.github.alxpark/propresenter-mcp

用于连接和操作 ProPresenter 7 的 MCP 服务器,方便 AI 助手集成演示控制相关能力。

README

propresenter-mcp

A comprehensive Model Context Protocol (MCP) server that provides complete control over ProPresenter presentations via the ProPresenter API. This server implements the full ProPresenter API specification with 231 endpoints organized into 27 API groups and exposed through modular client classes.

Official MCP Registry

Prerequisites

  • Node.js 18 or higher
  • ProPresenter 7 with API enabled
  • ProPresenter running and accessible on your network

Installation

  1. Clone this repository or download the source code

  2. Install dependencies:

bash
npm install
  1. Build the project:
bash
npm run build

Configuration

The server connects to ProPresenter using environment variables:

  • PROPRESENTER_URL - The URL of your ProPresenter instance (default: http://localhost:50000)
  • PROPRESENTER_PASSWORD - The API password (if configured in ProPresenter)

ProPresenter Setup

  1. Open ProPresenter preferences
  2. Go to the Network tab
  3. Enable "Network" and note the port number (default: 50000)
  4. Optionally set a password for API access

Usage

With Claude Desktop

Add this to your Claude Desktop configuration file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

Windows: %APPDATA%\Claude\claude_desktop_config.json

json
{
  "mcpServers": {
    "propresenter": {
      "command": "node",
      "args": ["/absolute/path/to/propresenter-mcp/build/index.js"],
      "env": {
        "PROPRESENTER_URL": "http://localhost:50000",
        "PROPRESENTER_PASSWORD": "your-password-if-needed"
      }
    }
  }
}

Replace /absolute/path/to/propresenter-mcp with the actual path to this project.

With VS Code

This server can be debugged directly in VS Code using the included MCP configuration.

  1. Open this project in VS Code
  2. The server is automatically configured for debugging via .vscode/mcp.json
  3. Use the MCP extension to test and debug the server

Example Commands

Once connected, you can ask Claude to control ProPresenter:

Status & Information:

  • "What version of ProPresenter is running?"
  • "Show me the status of all screens"
  • "What's the status of audience screens?"
  • "Get the current slide information"

Presentations:

  • "What presentation is currently active?"
  • "Trigger the presentation with UUID [uuid]"
  • "Go to the next slide"
  • "Go to slide number 5"
  • "Play the presentation timeline"
  • "Show me the chord chart"
  • "Get a thumbnail of slide 3"

Announcements:

  • "What announcement is currently active?"
  • "Trigger the next announcement cue"
  • "Show me the announcement timeline status"
  • "Go to announcement cue 2"

Audio & Media:

  • "List all audio playlists"
  • "Show me the contents of audio playlist [id]"
  • "Play the next song in the active playlist"
  • "Trigger the focused audio playlist"
  • "List all media playlists"
  • "Trigger media item [id] in playlist [playlist_id]"

Playlists:

  • "List all presentation playlists"
  • "Show me the active playlist"
  • "Focus the next playlist"
  • "Trigger the first item in the focused playlist"
  • "Create a new playlist called 'Sunday Service'"

Capture:

  • "What's the current capture status?"
  • "Start recording"
  • "Stop the capture"
  • "Show me available capture encodings for RTMP"

Clear:

  • "Clear the announcements layer"
  • "Show me all clear groups"
  • "Trigger the clear group [id]"
  • "Create a new clear group"

Library:

  • "List all my libraries"
  • "Show presentations in library [id]"
  • "Trigger presentation [id] from library [library_id]"

Looks:

  • "Show me all configured looks"
  • "What look is currently live?"
  • "Switch to look [id]"
  • "Create a new look"

Macros:

  • "List all macros"
  • "Trigger macro [id]"
  • "Show me all macro collections"
  • "Create a new macro"

Props:

  • "List all props"
  • "Trigger prop [id]"
  • "Clear prop [id]"
  • "Pause auto-clear for prop [id]"
  • "List all prop collections"

Stage:

  • "Show me the current stage message"
  • "Display stage message [message]"
  • "Hide the stage message"
  • "List all stage layouts"
  • "Set stage layout [layout_id] for screen [screen_id]"

Messages:

  • "Show me all messages"
  • "Display message [id]"
  • "Hide message [id]"
  • "Create a new message"

Timers:

  • "List all timers"
  • "Start timer [id]"
  • "Stop timer [id]"
  • "Reset the sermon timer"
  • "Create a countdown timer"
  • "Get the current system time"

Themes:

  • "List all themes"
  • "Show me details of theme [id]"
  • "Get theme slide [slide_id] from theme [theme_id]"

Transport:

  • "Play the presentation layer"
  • "Pause the audio layer"
  • "Skip forward 30 seconds on the announcement layer"
  • "Go to the end of the presentation"
  • "Get the current playback time"

Masks:

  • "List all masks"
  • "Show me details of mask [id]"

Triggers:

  • "Trigger the next cue"
  • "Trigger the previous media item"

Development

Build

bash
npm run build

Watch Mode

bash
npm run watch

API Reference

This server implements the complete ProPresenter API documented at https://openapi.propresenter.com/

API Coverage

  • Total Endpoints: 231 REST API endpoints
  • API Groups: 27 functional groups
  • Client Modules: 18 TypeScript client classes
  • Tool Definitions: 18 MCP tool modules
  • Handler Modules: 18 request handler modules
  • HTTP Methods: Full support for GET, POST, PUT, DELETE operations
  • Architecture: Complete three-layer implementation (clients → tools → handlers)

See api/api.md for complete API documentation with all 231 endpoints organized by group.

Troubleshooting

Connection Issues:

  • Verify ProPresenter is running and the API is enabled
  • Check that the URL and port are correct
  • Ensure no firewall is blocking the connection
  • Verify the password if authentication is enabled

Server Not Starting:

  • Make sure you've built the project with npm run build
  • Check that Node.js 18+ is installed
  • Verify all dependencies are installed with npm install

常见问题

io.github.alxpark/propresenter-mcp 是什么?

用于连接和操作 ProPresenter 7 的 MCP 服务器,方便 AI 助手集成演示控制相关能力。

相关 Skills

MCP构建

by anthropics

Universal
热门

聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。

想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。

平台与服务
未扫描114.1k

Slack动图

by anthropics

Universal
热门

面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。

帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。

平台与服务
未扫描114.1k

MCP服务构建器

by alirezarezvani

Universal
热门

从 OpenAPI 一键生成 Python/TypeScript MCP server 脚手架,并校验 tool schema、命名规范与版本兼容性,适合把现有 REST API 快速发布成可生产演进的 MCP 服务。

帮你快速搭建 MCP 服务与后端 API,脚手架完善、扩展顺手,尤其适合想高效验证服务能力的开发者。

平台与服务
未扫描10.2k

相关 MCP Server

Slack 消息

编辑精选

by Anthropic

热门

Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。

这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。

平台与服务
83.4k

by netdata

热门

io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。

这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。

平台与服务
78.4k

by d4vinci

热门

Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。

这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。

平台与服务
35.4k

评论