Gamma MCP Server
Enables AI-powered generation of presentations, documents, and webpages through the Gamma API. Supports theme selection, folder management, and automatic export to PowerPoint or PDF formats.
README
Gamma MCP Server
A Model Context Protocol (MCP) server for Gamma AI that provides tools and resources for generating presentations, documents, and webpages using the Gamma Public API.
Features
Resources (2)
gamma://folders- List all folders (channels) in your Gamma workspacegamma://themes- List all available themes for generation
Tools (1)
generate_gamma- Generate Gamma content with AI, including automatic polling until completion
Prerequisites
- Node.js 18+
- Yarn package manager
- A Gamma API key (get one here)
Installation
-
Install dependencies:
yarn install -
Configure your API key:
Edit
src/gamma-api.service.tsand replace the placeholder API key:const GAMMA_API_KEY = 'sk-gamma-your-api-key-here';Replace
'sk-gamma-your-api-key-here'with your actual Gamma API key. -
Build the project:
yarn build
Running the Server
Development mode (with auto-reload):
yarn dev
Production mode:
yarn start
The server will start on http://localhost:3000 using streamable HTTP transport.
Connecting to Claude Desktop
To use this MCP server with Claude Desktop, add it to your Claude configuration:
macOS/Linux:
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"gamma": {
"command": "node",
"args": ["/absolute/path/to/gamma-mcp-server/dist/index.js"]
}
}
}
Windows:
Edit %APPDATA%\Claude\claude_desktop_config.json with similar configuration.
Important: Replace /absolute/path/to/gamma-mcp-server with the actual absolute path to this project directory.
Usage Examples
Once connected to Claude Desktop, you can use natural language to interact with Gamma:
List Available Themes
Show me all available Gamma themes
List Workspace Folders
What folders do I have in my Gamma workspace?
Generate a Presentation
Create a 10-slide presentation about renewable energy using the "Modern Professional" theme
Generate with Export
Generate a presentation about AI trends and export it as a PowerPoint file
API Reference
Resources
gamma://folders
Returns all workspace folders with pagination automatically handled.
Response:
{
"folders": [
{"id": "fold_123", "name": "Marketing"},
{"id": "fold_456", "name": "Sales"}
],
"total": 2
}
gamma://themes
Returns all available themes with pagination automatically handled.
Response:
{
"themes": [
{
"id": "theme_123",
"name": "Modern Professional",
"type": "standard",
"colorKeywords": ["blue", "corporate"],
"toneKeywords": ["professional", "clean"]
}
],
"total": 50
}
Tools
generate_gamma
Generate Gamma content with automatic polling until completion.
Parameters:
inputText(required): Content to generate from (max 400k chars)textMode(required):"generate","condense", or"preserve"format(optional):"presentation","document","social", or"webpage"(default: "presentation")numCards(optional): Number of cards/pages to generatethemeId(optional): Theme ID from the themes resourcefolderIds(optional): Array of folder IDs to save the gamma inexportAs(optional):"pptx"or"pdf"to generate an export URL
Returns:
{
"success": true,
"generationId": "gen_abc123",
"gammaUrl": "https://gamma.app/docs/...",
"exportUrl": "https://gamma.app/export/...",
"credits": {
"deducted": 10,
"remaining": 90
}
}
Development
Project Structure
gamma-mcp-server/
├── src/
│ ├── index.ts # Entry point
│ ├── app.module.ts # NestJS app module
│ ├── gamma-api.service.ts # Gamma API client
│ ├── folders.resource.ts # Folders MCP resource
│ ├── themes.resource.ts # Themes MCP resource
│ └── generate.tool.ts # Generate MCP tool
├── dist/ # Compiled output
├── package.json
├── tsconfig.json
└── README.md
Scripts
yarn build- Compile TypeScript to JavaScriptyarn start- Run the compiled serveryarn dev- Run in development mode with ts-nodeyarn watch- Watch mode for TypeScript compilation
Troubleshooting
"Invalid API key" error
Make sure you've replaced the placeholder API key in src/gamma-api.service.ts with your actual Gamma API key.
Server won't start
- Make sure you've run
yarn installandyarn build - Check that port 3000 is not already in use
- Check the console for error messages
Claude Desktop can't connect
- Verify the absolute path in your Claude config is correct
- Make sure the server is built (
yarn build) - Restart Claude Desktop after editing the config
- Check Claude Desktop logs for connection errors
Learn More
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。