Gamma Mcpserver MCP Server

This document guides you through setting up and running the Gamma MCP (Model Context Protocol) server, which allows you to generate presentations

Local serverstdioTypeScript

What is the Gamma Mcpserver MCP server?

Gamma Mcpserver MCP server is a locally run integration for AI assistants that speak the Model Context Protocol. 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 the assistant can call

Once Gamma Mcpserver is connected, these are the calls the assistant has available:

  • 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
  • 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)
  • 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

Setting it up

ts-node on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Configuration and credentials

You will need 2 environment variables: GAMMA_API_KEY, GAMMA_API_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Choosing this one

Among the AI and media services options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Gamma Mcpserver's toolset — Resources, Tools, Prompts and 10 more — is a fair guide to whether it matches your workflow. It is maintained by nickloveinvesting; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • With 13 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Gamma Mcpserver.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the gamma mcpserver mcp server does with a few real requests.

Available tools

ToolWhat it does
ResourcesFile-like data that can be read by clients (like API responses or file contents).
ToolsFunctions that can be called by the LLM (with user approval).
PromptsPre-written templates that help users accomplish specific tasks.
inputTextThe main topic or prompt.
toneOptional, e.g., 'humorous and sarcastic'.
audienceOptional, e.g., 'students'.
textAmountOptional, 'short', 'medium', or 'long'.
textModeOptional, 'generate' or 'summarize'.
numCardsOptional, number of slides (1-20).
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
Doublecheck the absolute paths in claude_desktop_config.json for cwd and potentially command.

How to install the Gamma Mcpserver MCP server

{
      "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
        }
      }
    }

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
GAMMA_API_KEYCredential the server authenticates with.Yes
GAMMA_API_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Gamma Mcpserver to Resources.
  • Use Gamma Mcpserver to Tools.
  • Use Gamma Mcpserver to Prompts.

Frequently asked questions

It connects Gamma Mcpserver to MCP-compatible AI assistants such as Claude and Cursor, exposing 13 tools (Resources, Tools, Prompts, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Gamma Mcpserver directly.