npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@mindstone/mcp-server-gamma

v0.3.3

Published

Gamma AI presentation generation MCP server for Model Context Protocol hosts

Readme

@mindstone/mcp-server-gamma

npm version License: FSL-1.1-MIT

Gamma MCP server for creating Gamma presentations, documents, webpages, and social posts, listing themes and folders, and polling async generation/export status.

Best for MCP hosts that want to create Gamma decks and exports from a local package using an API key they already manage.

Status

Why this exists

Gamma's hosted MCP server is the easiest path for no-code and remote-connector flows. This package is for local MCP hosts that already manage npm packages and API keys.

It gives an assistant the useful Gamma creation loop: pick a theme or folder, start a deck/document/webpage generation, wait for it to finish, and return the Gamma link or exported PDF/PPTX. The benefit is simple: turn a prompt into a usable Gamma asset without leaving the host.

Example interaction

"Create a 10-slide investor update about Q4 results using our corporate theme and export it as PPTX."

Tools the host calls:

  1. gamma_list_themes — finds the custom theme ID.
  2. gamma_generate — starts a presentation generation with export_as: "pptx".
  3. gamma_get_status — polls until Gamma completes the deck and export.

Response (trimmed):

{
  "generation_id": "gen_123",
  "status": "completed",
  "gamma_url": "https://gamma.app/docs/...",
  "pptx_url": "https://...",
  "file_path": "/tmp/gamma_export_gen_123_abcd.pptx"
}

Requirements

  • Node.js 20+
  • npm

One-click install

Add to Cursor Add to VS Code Add to VS Code Insiders

After clicking the button, your host will prompt you to fill: GAMMA_API_KEY, GAMMA_EXPORT_POLL_INTERVAL_MS, GAMMA_EXPORT_POLL_MAX_ATTEMPTS, GAMMA_REQUEST_TIMEOUT_MS.

{
  "mcpServers": {
    "Gamma": {
      "command": "npx",
      "args": [
        "-y",
        "@mindstone/mcp-server-gamma"
      ],
      "env": {
        "GAMMA_API_KEY": "",
        "GAMMA_EXPORT_POLL_INTERVAL_MS": "5000",
        "GAMMA_EXPORT_POLL_MAX_ATTEMPTS": "12",
        "GAMMA_REQUEST_TIMEOUT_MS": "60000"
      }
    }
  }
}

Quick Start

Install & build

cd <path-to-repo>/connectors/gamma
npm install
npm run build

npx (once published)

npx -y @mindstone/mcp-server-gamma

Local

node dist/index.js

Configuration

Environment variables

  • GAMMA_API_KEY — Gamma API key
  • GAMMA_EXPORT_POLL_INTERVAL_MS — export poll interval in milliseconds (default: 5000)
  • GAMMA_EXPORT_POLL_MAX_ATTEMPTS — maximum export poll attempts (default: 12)
  • GAMMA_REQUEST_TIMEOUT_MS — optional override (positive integer ms, max 30 min) for the outbound HTTP request timeout applied to both Gamma API and host-bridge calls. Default: 60000 (60s). Raise this if you see TIMEOUT errors on slow submits; lower it if you want tighter bounds.
  • MCP_HOST_BRIDGE_STATE — host-managed bridge state file used for credential management when a host provides one; not needed for ordinary manual setup.
  • MINDSTONE_REBEL_BRIDGE_STATE — backwards-compatible alias for MCP_HOST_BRIDGE_STATE.

Host configuration examples

Claude Desktop / Cursor

{
  "mcpServers": {
    "Gamma": {
      "command": "npx",
      "args": ["-y", "@mindstone/mcp-server-gamma"],
      "env": {
        "GAMMA_API_KEY": "your-api-key"
      }
    }
  }
}

Local development (no npm publish needed)

{
  "mcpServers": {
    "Gamma": {
      "command": "node",
      "args": ["<path-to-repo>/connectors/gamma/dist/index.js"],
      "env": {
        "GAMMA_API_KEY": "your-api-key"
      }
    }
  }
}

Tools (6)

Configuration

  • configure_gamma_api_key — Configure the Gamma API key

Listing

  • gamma_list_themes — List available Gamma themes (custom and standard)
  • gamma_list_folders — List folders in the user's Gamma workspace

Generation

  • gamma_generate — Create AI-powered presentations, documents, webpages, or social posts
  • gamma_create_from_template — Clone and modify an existing Gamma document using AI
  • gamma_get_status — Poll the status of a Gamma generation

Security notes

  • Gamma API calls use GAMMA_API_KEY as an x-api-key header.
  • configure_gamma_api_key can store the key in memory, or hand it to a host bridge when MCP_HOST_BRIDGE_STATE is present.
  • Host bridge requests, when configured, go to 127.0.0.1 using the token from the bridge state file.
  • PDF/PPTX exports are downloaded from Gamma-provided URLs into the system temp directory with a sanitized generation ID in the filename.
  • Generation can create content in the user's Gamma workspace, may consume Gamma credits, and can set workspace/external sharing options.

Licence

FSL-1.1-MIT — Functional Source License, Version 1.1, with MIT future licence. The software converts to MIT licence on 2030-04-08.