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

deckpipe-mcp

v0.3.9

Published

MCP server for deckpipe — author slides as HTML/CSS/JS from any AI agent

Readme

deckpipe-mcp

MCP server for deckpipe — author slide decks as HTML/CSS/JS from any AI agent.

Each slide is a canvas slide: you write the HTML, optional scoped CSS, and optional JS. deckpipe mounts it in a sandboxed 1920×1080 shadow root, themes it via deck-level CSS variables, and gives every deck a shareable viewer URL with built-in commenting.

Install

Remote (Claude.ai, Claude Desktop, any Streamable HTTP MCP client)

Add https://deckpipe.dev/mcp as a custom remote MCP server. No authentication required.

Local (stdio)

Claude Code

claude mcp add deckpipe -- npx deckpipe-mcp

Manual MCP config (Claude Desktop, Cursor, etc.)

{
  "mcpServers": {
    "deckpipe": {
      "command": "npx",
      "args": ["-y", "deckpipe-mcp"]
    }
  }
}

Tools

| Tool | Description | |------|-------------| | create_deck | Create a new deck and get a shareable viewer URL | | get_deck | Retrieve a deck by ID (includes open comments) | | update_deck | Edit slide content, restructure slides, change theme | | delete_deck | Delete a deck permanently | | upload_image | Upload a base64 image, get a hosted URL | | search_images | Search Unsplash for stock photos with automatic attribution | | preview_slide | Render a transient slide (no persistence) and return a screenshot + render report. Iterate on html/css/js before committing to a deck. | | get_slide_screenshot | Render a specific slide of an existing deck. Cached on updated_at. | | list_layouts | Describe the canvas layout and deck-level theming options | | list_comments | List comments on a deck (filter by status, slide, since-timestamp) | | reply_to_comment | Reply to a comment thread after addressing feedback | | resolve_comment | Mark a comment as resolved |

The canvas slide

Every slide is a canvas slide:

{
  "layout": "canvas",
  "content": {
    "html": "<h1 class=\"hero\" data-dp-anchor=\"title\">Q2 launch</h1>",
    "css": ".hero { font-weight: 800; letter-spacing: -0.02em; }",
    "js": "slide.querySelector('h1').animate([{opacity:0},{opacity:1}], 600);"
  }
}
  • Design space: 1920×1080. The viewer scales the slide to fit.
  • CSS is auto-scoped. Each slide mounts in an open shadow root — no BEM or class prefixes needed.
  • Deck-level stylesheet is adopted by every canvas slide. Define a design system (typography, color tokens, reusable .card/.grid/.hero classes) once and reference it from every slide's html.
  • Deck-level head is an array of <link> / <script> / <style> entries injected into the page head. Load Google Fonts here as <link> entries, then set font-family in your stylesheet.
  • js runs on slide enter with (root, slide) in scope. Return a cleanup function to run on slide exit. Set static_render_only: true to skip JS in print/PDF.

Commenting and inline editing

Reviewers can comment on any DOM element in a canvas slide — deckpipe auto-assigns a content_path to every element at render time. To make a comment thread stable across edits, mark the target element with data-dp-anchor="<stable-name>" (e.g. <h1 data-dp-anchor="hero-title">). Preserve those IDs in your updates and the thread stays attached.

The viewer's edit mode also makes text-bearing leaf elements (h1, p, span, etc.) contenteditable. On blur the full html is saved back via PATCH. Your js should be resilient to text changes — don't rely on exact text strings to find elements; use selectors or data-* attributes.

Theming

| Field | Description | |-------|-------------| | stylesheet | Global CSS adopted by every canvas slide (up to 100KB). Define typography, color tokens, and reusable classes here. | | head | <link> / <script> / <style> entries injected into the page head. Load Google Fonts via <link> here, then reference them as font-family in your stylesheet. |

Comments workflow

  1. Call get_deck — each slide includes a comments[] array with open comments
  2. Each comment has a content_path (anchor:hero-title, auto:5, or slide) telling you which element it refers to
  3. Use update_deck to address the feedback
  4. Call reply_to_comment to explain what you changed
  5. The user resolves the comment once satisfied

Set agent_name when calling create_deck (e.g. "Acme Strategy Agent") — this name appears on your replies.

Warnings

create_deck and update_deck responses may include a warnings array with actionable feedback:

{
  "deck_id": "dk_abc",
  "viewer_url": "...",
  "warnings": [
    "Slide 2: image_url returned HTTP 404 — image may not render (https://example.com/missing.jpg)"
  ]
}

Unreachable images are flagged with a HEAD request during creation/update; fix them with a follow-up update_deck call.

Configuration

By default the MCP server connects to https://deckpipe.dev. To use a self-hosted instance:

{
  "mcpServers": {
    "deckpipe": {
      "command": "npx",
      "args": ["-y", "deckpipe-mcp"],
      "env": {
        "DECKPIPE_API_URL": "http://localhost:3010"
      }
    }
  }
}

Legacy templated layouts

deckpipe 0.2 had 25 templated layouts (title, title_and_bullets, stats, swot, etc.). They are deprecated and no longer advertised. Existing decks using them still render unchanged and the REST API still accepts them; new slides should always use canvas. See CLAUDE.md → "Resurrecting deprecated layouts" if you need to re-enable them.

Support

Legal

Note: Decks on the hosted instance are stored without authentication and accessible by anyone who has the deck ID. Do not store confidential or personal information in decks.

License

MIT — use, modify, fork, host, and ship commercially.

Copyright © 2026 Björn Schefzyk.