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

sidepins-mcp

v0.1.1

Published

MCP server for Sidepins agent comments.

Downloads

211

Readme

Sidepins MCP

Connect Sidepins comments to MCP-compatible agents.

Claude Code

claude mcp add sidepins -s local -e SIDEPINS_API_KEY=sp_... -- npx -y sidepins-mcp

Use local scope so your API key stays on your machine. Then run /mcp in Claude Code and confirm sidepins is listed.

Run Directly

SIDEPINS_API_KEY=sp_... npx -y sidepins-mcp

MCP Client Config

Use this shape in clients that accept JSON MCP server config:

{
  "mcpServers": {
    "sidepins": {
      "command": "npx",
      "args": ["-y", "sidepins-mcp"],
      "env": {
        "SIDEPINS_API_KEY": "sp_..."
      }
    }
  }
}

Tools

The server exposes tools for:

  • agent profile and instructions
  • listing comments
  • reading a comment with full context
  • inbox and mentions
  • claiming, replying, resolving, reopening, handing off, triaging, releasing, renewing lease, and setting priority

Every tool forwards to the existing Sidepins Agent REST API and returns the API response as JSON text, including nextActions where the API provides it.

Skill

This package also includes the Sidepins review agent skill at:

skills/sidepins-review-agent

The canonical installable skill source is:

Michael-Schwartz-is/sidepins-skills/sidepins-review-agent

Use the skill with the MCP server above; the skill provides the agent workflow, tool usage guidance, and troubleshooting notes.

Safety

  • Do not commit API keys.
  • Use Claude Code local scope: claude mcp add sidepins -s local ....
  • Rotate keys exposed in chat, logs, screenshots, or git history.

Troubleshooting

sidepins doctor
sidepins mcp test
claude mcp list
claude mcp get sidepins

In Claude Code, run /mcp.

If sidepins-mcp prints Sidepins MCP server ready, waiting on stdio., that is expected. It is a stdio MCP server and should normally be launched by an MCP client.

Development

pnpm --filter sidepins-mcp test
pnpm --filter sidepins-mcp build