mcp-server-cappt: A MCP server for Cappt
About
mcp-server-cappt is a Model Context Protocol (MCP) server for generating outlines and presentations using Cappt (cappt.cc). It is intended for developers and AI assistants who want to programmatically create slide-based content.
Details
- Author
- cappt-team
- GitHub stars
- 8
- Downloads
- 220
- Categories
- Other
Jump to
- generate_presentation tool: create a presentation from a given outline
- Optional inclusion of gallery and preview in presentation results
- Returns record ID, status, slide count, editor URL, title, thumbnail
- geenrate_outline prompt: generate a standard outline from user input
- MIT License
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
mcp-server-cappt: A MCP server for CapptCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Install the server by cloning the repository, running npm install and npm run build. Configure it as an MCP server in tools like Claude Desktop by setting the CAPPT_TOKEN environment variable and specifying the built index.js as the command. Use the generate_presentation tool to produce presentations from outlines, and the geenrate_outline prompt to create standard outlines.
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"mcp-server-cappt: a mcp server for cappt": {
"sentry": {
"command": "node",
"args": [
"path/to/repo/dist/index.js"
],
"env": {
"CAPPT_TOKEN": "YOUR_CAPPT_TOKEN"
}
}
}
}
}
McpServers
{
"sentry": {
"command": "node",
"args": [
"path/to/repo/dist/index.js"
],
"env": {
"CAPPT_TOKEN": "YOUR_CAPPT_TOKEN"
}
}
}
mcp-server-cappt: A MCP server for Cappt
<div align="center">

</div>
Overview
A Model Context Protocol server for generating outline and presentation with cappt.cc.
Tools
1. generate_presentation
- Generate a presentation from outline (generated by generate_outline)
- Input:
- outline (string): a standard outline
- include_gallery (bool): whether to include gallery in result
- include_preview (bool): whether to include preview in result
- Returns:
- record_id: the record ID of the generated presentation
- status: the status of the generation process'
- total_page: the total number of slides in the presentation
- editor_url: the URL to edit the presentation
- title: the title of the presentation
- thumbanil: the thumbnail of the presentation
- gallery: the gallery of the presentation
- preview: the preview of the presentation
Prompts
1. geenrate_outline
- Generate a standard outline
- Input:
- input (string): user input, eg, title, article, etc.
- Returns: A standard outline
Installation
cd path/to/repo
npm install
npm run build
Configuration
Usage with Claude Desktop
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"sentry": {
"command": "node",
"args": [
"path/to/repo/dist/index.js"
],
"env": {
"CAPPT_TOKEN": "YOUR_CAPPT_TOKEN"
}
}
}
}
Debugging
You can use the MCP inspector to debug the server. Please make sure you have installed this package with uv, then run:
npx @modelcontextprotocol/inspector node dist/index.ts
License
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



