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

@matterai/mcp-devprompts

v1.0.1

Published

MCP server for accessing GitHub Gists with dev prompts

Downloads

73

Readme

MCP DevPrompts

A Model Context Protocol (MCP) server for accessing GitHub Gists containing developer prompts and templates. This server enables Claude and other AI assistants to retrieve markdown-based prompt templates from GitHub Gists.

Features

  • Access GitHub Gists as MCP resources using the URI format gist://github/{gistId}
  • Provides a read-gist tool for programmatic access to gist content
  • Extracts and formats markdown content from gists
  • Supports authenticated GitHub API access to avoid rate limiting
  • Provides proper error handling for failed requests

Installation

Quick start with npx

You can run the server directly without installation:

npx -y @matterai/mcp-devprompts

With GitHub token for authentication:

GITHUB_TOKEN=your_token npx -y @matterai/mcp-devprompts

Local installation

# Install globally
npm install -g @matterai/mcp-devprompts

# Run the server
mcp-devprompts

From source

# Clone this repository
git clone https://github.com/matterai/mcp-devprompts.git
cd mcp-devprompts

# Install dependencies
npm install

# Build the project
npm run build

# Run the server
npm start

Using with Claude for Desktop

  1. Configure Claude for Desktop to use this server by editing your configuration file:
{
  "mcpServers": {
    "github-gist-server": {
      "command": "npx",
      "args": ["-y", "@matterai/mcp-devprompts"]
    }
  }
}
  1. For authenticated GitHub access (recommended to avoid API rate limits):
{
  "mcpServers": {
    "github-gist-server": {
      "command": "npx",
      "args": ["-y", "@matterai/mcp-devprompts"],
      "env": {
        "GITHUB_TOKEN": "your-github-personal-access-token"
      }
    }
  }
}
  1. If you installed the package globally:
{
  "mcpServers": {
    "github-gist-server": {
      "command": "mcp-devprompts"
    }
  }
}

Using with MCP Inspector

For testing and debugging, you can use the MCP Inspector:

# Using npx
npx @modelcontextprotocol/inspector npx -y @matterai/mcp-devprompts

# If installed globally
npx @modelcontextprotocol/inspector mcp-devprompts

# If running from source
npx @modelcontextprotocol/inspector node dist/index.js

Accessing Gists

Using Resource URIs

When connected to an MCP client like Claude, you can access gists using:

gist://github/c6d403bf2226db31a68948e26255a172

Replace the ID with the actual GitHub Gist ID from the URL.

Using the read-gist Tool

The server also provides a read-gist tool that you can use to fetch gist content programmatically:

Tool: read-gist
Parameters:
  - gist_id: The GitHub Gist ID (e.g., "c6d403bf2226db31a68948e26255a172")

Example usage with Claude: "Please fetch the gist with ID c6d403bf2226db31a68948e26255a172"

Claude will use the tool to retrieve and display the gist content.

GitHub Authentication

To avoid rate limits, it's recommended to use a GitHub personal access token:

  1. Go to GitHub Settings > Developer settings > Personal access tokens > Generate new token
  2. Create a token with the "gist" scope (read-only access is sufficient)
  3. Set the token as an environment variable or in your Claude Desktop configuration

License

MIT