Labsco
nickloveinvesting logo

Gamma MCP Server

โ˜… 21

from nickloveinvesting

Integrates with the Gamma API to generate presentations from prompts.

๐Ÿ”ฅ๐Ÿ”ฅ๐Ÿ”ฅโœ“ VerifiedAccount requiredAdvanced setup

Gamma MCP Server

This document guides you through setting up and running the Gamma MCP (Model Context Protocol) server, which allows you to generate presentations using the Gamma API directly from MCP clients like Anthropic's Claude for Desktop.

What is Gamma?

Gamma is an AI-powered platform designed to help users create various types of content, with a strong focus on presentations. It leverages artificial intelligence to automatically generate slides, suggest text, and incorporate imagery, allowing for rapid development of polished presentations from simple prompts or existing documents. This MCP server specifically interacts with Gamma's API to bring this presentation generation capability into environments like Claude for Desktop. Check out the Gamma API docs to learn more.

What We'll Be Building

This server exposes a tool to an MCP client (like Claude for Desktop) that can take a prompt and various parameters to generate a presentation using the Gamma API. The server will return a link to the generated presentation.

Core MCP Concepts

Model Context Protocol servers can provide three main types of capabilities:

  • Resources: File-like data that can be read by clients (like API responses or file contents).
  • Tools: Functions that can be called by the LLM (with user approval).
  • Prompts: Pre-written templates that help users accomplish specific tasks.

This server primarily focuses on providing a Tool.

Prerequisite Knowledge

This quickstart assumes you have familiarity with:

  • Node.js and TypeScript.
  • LLMs like Anthropic's Claude.
  • Basic command-line usage.

Understanding the Server Code (src/index.ts)

Let's break down the key parts of the src/index.ts file:

  1. Imports:

    import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
    import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
    import { z } from "zod";
    import fetch from "node-fetch";

    These lines import the necessary MCP server classes, Zod for schema definition and validation, and node-fetch for making HTTP requests.

  2. Gamma API Configuration:

    const GAMMA_API_URL = "https://api.gamma.app/public-api/v0.1/generate";
    const GAMMA_API_KEY = "YOUR_GAMMA_API_KEY_HERE"; // Replace or use env var

    This sets up the base URL for the Gamma API and the API key.

  3. generatePresentation Helper Function: This async function is responsible for making the POST request to the Gamma API with the provided parameters and handling the response or errors.

  4. MCP Server Instance:

    const server = new McpServer({
      name: "gamma-presentation",
      version: "1.0.0",
      capabilities: {
        resources: {},
        tools: {},
      },
    });

    This initializes a new MCP server with a name and version.

  5. Tool Definition (server.tool):

    server.tool(
      "generate-presentation",
      "Generate a presentation using the Gamma API...",
      {
        /* Zod schema for parameters */
      },
      async (params) => {
        /* Tool execution logic */
      }
    );

    This is the core of the MCP server.

    • "generate-presentation": The name of the tool that clients will call.
    • "Generate a presentation...": A description of what the tool does. This is important for the LLM to understand how and when to use the tool.
    • Schema (zod object): Defines the input parameters the tool expects (e.g., inputText, tone, audience). zod is used to describe the type, whether it's optional, and provide a description for each parameter.
      • inputText: The main topic or prompt.
      • tone: Optional, e.g., 'humorous and sarcastic'.
      • audience: Optional, e.g., 'students'.
      • textAmount: Optional, 'short', 'medium', or 'long'.
      • textMode: Optional, 'generate' or 'summarize'.
      • numCards: Optional, number of slides (1-20).
      • And others like imageModel, imageStyle, editorMode, additionalInstructions.
    • Handler Function (async (params) => { ... }): This function is executed when the tool is called. It receives the parameters, calls generatePresentation, and formats the response (a link to the presentation or an error message).
  6. main Function:

    async function main() {
      const transport = new StdioServerTransport();
      await server.connect(transport);
      console.error("Gamma MCP Server running on stdio");
    }
    
    main().catch(/* ... */);

    This function sets up the server to communicate over standard input/output (stdio) and starts it.

Testing Your Server with Claude for Desktop

To use this server with Claude for Desktop, you need to configure Claude for Desktop to know how to launch your server.

  1. Install Claude for Desktop: Make sure you have Claude for Desktop installed. You can get it from the official source. Ensure it's updated to the latest version.

  2. Locate Claude for Desktop Configuration File: The configuration file is typically located at:

    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json (e.g., C:\Users\<YourUser>\AppData\Roaming\Claude\claude_desktop_config.json)
    • Linux: ~/.config/Claude/claude_desktop_config.json

    If the file or directories don't exist, create them.

  3. Configure Your Server in claude_desktop_config.json: Open claude_desktop_config.json in a text editor. Add your Gamma server to the mcpServers object.

    Important: You need the absolute path to your project directory and to ts-node (or node if you compile to JS).

    • Finding absolute path to your project: Navigate to your gamma-mcp-server directory in the terminal and run pwd (macOS/Linux) or cd (Windows, then copy the path).
    • Finding absolute path to npx or ts-node:
      • For npx: Run which npx (macOS/Linux) or where npx (Windows).
      • Often, npx is used, which then finds ts-node in your project's node_modules/.bin or globally. If Claude has trouble with npx, you might need to provide the direct path to ts-node.
      • A more robust way for the command might be to use the absolute path to your Node.js executable, and then specify ts-node and src/index.ts as arguments, ensuring the cwd (Current Working Directory) is set correctly.

    Here's an example configuration. You MUST replace /ABSOLUTE/PATH/TO/YOUR/gamma-mcp-server with the actual absolute path.

    You will also need to ensure that the GAMMA_API_KEY environment variable is available to the process launched by Claude for Desktop. How to do this depends on your OS and how Claude for Desktop launches processes. Some common methods include:

    • Setting the environment variable globally on your system.
    • If Claude for Desktop is launched from a terminal where GAMMA_API_KEY is already exported, it might inherit it.
    • Modifying the command or args in claude_desktop_config.json to explicitly pass the environment variable if your shell/Node.js setup allows (e.g., "command": "env", "args": ["GAMMA_API_KEY=your_key", "npx", "ts-node", ...] - this can be tricky and OS-dependent).
    • Using a wrapper script as the command that first sets the environment variable and then executes npx ts-node src/index.ts.

    A simple way for testing is often to ensure GAMMA_API_KEY is set in your user's global shell environment (e.g., in ~/.bashrc, ~/.zshrc, or system-wide environment variables on Windows) before launching Claude for Desktop.

    {
      "mcpServers": {
        "gamma-presentation-generator": {
          "command": "npx", // Or absolute path to npx, or node
          "args": [
            "ts-node", // If command is 'npx'
            // If command is absolute path to node:
            // "/PATH/TO/gamma-mcp-server/node_modules/ts-node/dist/bin.js",
            "src/index.ts"
          ],
          "cwd": "/ABSOLUTE/PATH/TO/YOUR/gamma-mcp-server" // Current Working Directory for the server
        }
      }
    }

    Explanation:

    • "gamma-presentation-generator": This is the name you give to your server configuration within Claude. It can be anything descriptive.
    • "command": The executable to run. npx is convenient as it resolves ts-node from your project. If this causes issues, use the absolute path to your Node.js executable.
    • "args": Arguments passed to the command.
      • If command is npx, the first arg is ts-node, followed by the path to your main server file (src/index.ts), relative to the cwd.
      • If command is an absolute path to node, args would be ["/ABSOLUTE/PATH/TO/YOUR/gamma-mcp-server/node_modules/ts-node/dist/bin.js", "src/index.ts"] or similar, making sure ts-node's entry script is correctly referenced.
    • "cwd": Crucially, set this to the absolute path of your project's root directory (gamma-mcp-server). This ensures that ts-node can find src/index.ts and node_modules.
  4. Save and Restart Claude for Desktop: Save the claude_desktop_config.json file and completely restart Claude for Desktop.

  5. Test with Commands: Once Claude for Desktop restarts, it should attempt to connect to your server.

    • Look for the tool icon (often a hammer ะทะฝะฐัŽั‚) in the Claude for Desktop interface. Clicking it should show your generate-presentation tool.
    • Try prompting Claude:
      • "Generate a presentation about the future of artificial intelligence."
      • "Make a presentation on sustainable energy sources, targeting college students, make it medium length."
      • "Use the gamma tool to create a short, humorous presentation for developers about the importance of documentation."

    Claude should recognize the request, identify your tool, and (after your approval if configured) execute it. Your server (running in its own terminal or process) will then call the Gamma API, and the link to the presentation should appear in Claude's response.

What's Happening Under the Hood

When you ask a question in Claude for Desktop:

  1. The client (Claude for Desktop) sends your question to the Claude LLM.
  2. Claude analyzes the available tools (including your generate-presentation tool) and decides if and how to use it.
  3. If Claude decides to use your tool, it sends a request to Claude for Desktop.
  4. Claude for Desktop executes the chosen tool by communicating with your MCP server (which it launched based on claude_desktop_config.json) over stdio.
  5. Your server runs the tool logic (calls the Gamma API).
  6. The results (presentation URL or error) are sent back from your server to Claude for Desktop, then to the LLM.
  7. Claude formulates a natural language response incorporating the tool's output.
  8. The response is displayed to you!