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

@getnarro/mcp-server

v0.3.4

Published

MCP (Model Context Protocol) server for AI-assisted Narro presentation creation

Readme

@getnarro/mcp-server

MCP (Model Context Protocol) server for AI-assisted Narro presentation creation

npm version npm downloads license CI

getnarro.com · Documentation · Ecosystem

The tools act on the filesystem: they scaffold projects, rewrite deck files, and run builds. Point the server at a directory you are willing to have written to.

Already using a coding agent with a terminal? You probably do not need this. Claude Code, Cursor's agent, and anything else with shell access can use the narro CLI directly — what they need is the documentation, and https://getnarro.com/llms.txt (or npm i -D @getnarro/docs) gives them that. This server is for assistants that cannot run commands themselves.

Setup

Claude Code

claude mcp add narro -- npx -y @getnarro/mcp-server

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "narro": {
      "command": "npx",
      "args": ["-y", "@getnarro/mcp-server"]
    }
  }
}

Cursor, Cline, Continue

The same object, under whatever key the client uses for MCP servers — for Cline that is cline.mcpServers in VS Code settings.

Then ask: "Create a Narro deck about our Q3 results and make sure it builds."

Tools

| Tool | What it does | | --- | --- | | create_presentation | Scaffolds a project, returns the path to the deck file | | list_slides | Structured slide list: index, id, title, layout, preview | | add_slide | Inserts a slide and writes the file | | update_slide | Rewrites one slide, preserving frontmatter it was not asked to change | | delete_slide | Removes a slide, returning its content so it can be restored | | apply_theme | Sets the deck's theme | | check_presentation | Validates layout, slot, and theme names without building — fast enough to run after each edit | | build_presentation | Builds, and returns the compiler output on failure | | export_presentation | PPTX, PDF, Google Slides, or a static site | | bundle_presentation | One self-contained HTML file | | import_presentation | From PowerPoint or Google Slides | | get_presentation_info | Documentation, and per-component prop types | | manage_comments | Slide comments |

build_presentation is the one to remember. A generated deck that looks right can still be broken; without a pass/fail signal there is nothing to correct from.

Editing decks

add_slide, update_slide, and delete_slide edit markdown decks. Slides are addressed by id where one exists, because an index shifts the moment something is inserted above it — and a tool that silently edits the wrong slide is worse than one that fails.

React decks are read-only to these tools: list_slides works, but slides there are React components and the file should be edited directly.

Resources

The documentation is exposed as resources at narro://docs/{slug}, which a client can read and cache without spending a tool call. get_presentation_info serves the same pages for clients that do not support resources.

Both read @getnarro/docs, whose component reference is generated from the TypeScript source — so prop types describe the shipping API rather than a hand-maintained copy of it.

The Narro ecosystem

| Package | What it is | | --- | --- | | @getnarro/cli | CLI tools for creating and managing Narro presentations | | @getnarro/core | The React runtime for Narro presentations — Presentation, Slide, navigation, transitions, and speaker notes | | @getnarro/docs | Narro's documentation as data — markdown pages, a generated component API reference, and llms.txt | | @getnarro/markdown | Markdown & MDX authoring for Narro presentations | | @getnarro/marketplace | Themes, colour schemes, and templates for Narro presentations | | @getnarro/mcp-server | MCP (Model Context Protocol) server for AI-assisted Narro presentation creation ← you are here | | @getnarro/shared-ui | Slide components for Narro presentations — headings, text, lists, code, media, charts, and layouts | | create-narro | Scaffold a new Narro presentation |

All eight ship from one repository and release together.

The npm package named narro is unrelated to this project. Narro's packages are all under the @getnarro/ scope; the CLI binary narro comes from @getnarro/cli.


Website · Documentation · llms.txt · GitHub · Issues · Changelog

Released under the MIT License.