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

@pinpole/mcp

v0.3.2

Published

Pinpole MCP server — design cloud architectures, run cost simulations, and draw on the Pinpole canvas from Claude Code, Cursor, and Codex.

Readme

Pinpole MCP Server

Design cloud architectures, run cost/performance simulations, and draw them on your Pinpole canvas — from Cursor, Claude Code, Codex, Claude.ai, and Bolt.

Product: https://pinpole.cloud · App: https://app.pinpole.cloud · Connectors: docs/connectors.md


Quick start (stdio — Cursor, Claude Code, Codex)

1. Get a token

Open Pinpole → Settings → Developer / MCP and create a personal access token (pp_live_…). Copy it — it's shown only once.

2. Configure your agent

Cursor — add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "pinpole": {
      "command": "npx",
      "args": ["-y", "@pinpole/mcp"],
      "env": {
        "PINPOLE_API_TOKEN": "pp_live_…",
        "PINPOLE_BASE_URL": "https://app.pinpole.cloud"
      }
    }
  }
}

Claude Code:

claude mcp add pinpole \
  --env PINPOLE_API_TOKEN=pp_live_… \
  --env PINPOLE_BASE_URL=https://app.pinpole.cloud \
  -- npx -y @pinpole/mcp

Codex — add to ~/.codex/config.toml:

[mcp_servers.pinpole]
command = "npx"
args = ["-y", "@pinpole/mcp"]
env = { PINPOLE_API_TOKEN = "pp_live_…", PINPOLE_BASE_URL = "https://app.pinpole.cloud" }

Remote connector (Claude Desktop, Claude.ai, Bolt)

| Field | Value | |-------|-------| | URL | https://app.pinpole.cloud/mcp | | Transport | HTTP | | Auth | OAuth (Claude) or API key pp_live_… (Bolt) |

Claude Desktop: Settings → Connectors → Add custom connector → URL above (leave OAuth Client ID/Secret blank). See docs/connectors.md.

OAuth discovery: https://app.pinpole.cloud/.well-known/oauth-authorization-server

Self-hosted HTTP server:

npm run build && npm run start:http

Env: MCP_HOST, MCP_PORT (default 3333), PINPOLE_BASE_URL.

Embed in your Node app:

import { createMcpApp } from "@pinpole/mcp/http";
const app = createMcpApp();
app.listen(3333);

Tools

66 MCP tools covering projects, workspaces, AI architect, simulation, deploy, templates, teams, connectors, billing, and export. Full API parity matrix: docs/PARITY.md.

Highlights:

| Tool | What it does | |------|--------------| | pinpole_build_architecture | Prompt → architecture → inline canvas in chat (+ optional simulation) | | pinpole_ai_chat / pinpole_ai_vision | Multi-turn AI architect | | pinpole_simulate_cost | Cost/latency simulation | | pinpole_list_projects / workspace CRUD | Project & canvas management | | pinpole_open_canvas | Inline read-only canvas embed (PAT) + links to full editor |

Canvas in Cursor

With PINPOLE_API_TOKEN set, canvas tools mint a short-lived /embed/canvas URL and return an inline read-only diagram in chat (no Pinpole browser login). Use Open interactive canvas in Pinpole for full drag-and-drop editing.

See docs/connectors.md. | pinpole_deploy_execute / pinpole_get_drift | Deploy & drift | | pinpole_export_terraform | Offline Terraform export (no network) |


Environment variables

| Variable | Default | Notes | |----------|---------|-------| | PINPOLE_API_TOKEN | – | pp_live_… from Developer settings | | PINPOLE_BASE_URL | https://app.pinpole.cloud | API base URL | | PINPOLE_DEV_USER_ID | – | Local dev only (ALLOW_DEV_USER_HEADER=1 on server) |


Development

npm ci
npm run build
npm test
npm test              # smoke: tools/list
npm run test:tools    # list all registered tools
npm run test:parity   # compare tools against docs/PARITY.md

Local integration testing (no browser UI): see docs/LOCAL_TESTING.md.


Links

  • Pinpole — https://pinpole.cloud
  • App — https://app.pinpole.cloud
  • Connector setup — docs/connectors.md
  • Issues — https://github.com/codeforstartups/pinpole-mcp

MIT licensed.