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

@sajalmishra/markpin-mcp

v0.1.2

Published

MCP server for Pinpoint visual feedback tool

Downloads

24

Readme

@sajalmishra/markpin-mcp

MCP server for Markpin visual feedback tool. Stores browser annotations and exposes 9 MCP tools your AI coding agent can call to read, acknowledge, fix, and resolve UI feedback.

Install

# Run directly (no global install needed)
npx @sajalmishra/markpin-mcp init    # configure Claude Code
npx @sajalmishra/markpin-mcp server  # start the server

# Or install globally
npm install -g @sajalmishra/markpin-mcp
markpin-mcp init
markpin-mcp server

Quick start

# 1. Add to Claude Code config automatically
markpin-mcp init

# 2. Start the server
markpin-mcp server
# [markpin] HTTP  → http://localhost:4747
# [markpin] MCP   → stdio
# [markpin] Ready — annotate in browser, Claude fixes it.

# 3. Verify everything is working
markpin-mcp doctor

Then add the toolbar to your React app:

npm install @sajalmishra/markpin -D
import { Pinpoint } from '@sajalmishra/markpin';
// Add <Pinpoint /> to your app — dev only

CLI commands

| Command | Description | |---------|-------------| | markpin-mcp server | Start the HTTP + MCP server | | markpin-mcp init | Write MCP config to .mcp.json in the current directory | | markpin-mcp doctor | Check Node.js version, MCP config, and port availability |

All commands accept --port PORT to override the default port (4747).

Environment variables

| Variable | Description | |----------|-------------| | PINPOINT_PORT | Override the default port (4747). Lower priority than --port flag. |

Example: PINPOINT_PORT=8080 markpin-mcp server

MCP tools

| Tool | Description | |------|-------------| | pinpoint_list_sessions | List all active sessions and their pending annotation count | | pinpoint_get_session | Get a session with all its annotations | | pinpoint_get_pending | Get unresolved annotations for one session | | pinpoint_get_all_pending | Get all unresolved annotations across all sessions | | pinpoint_watch_annotations | Block until new annotations arrive (for hands-free loops) | | pinpoint_acknowledge | Mark an annotation in_progress — turns the marker pin yellow | | pinpoint_resolve | Mark an annotation resolved — marker pin flashes green and disappears | | pinpoint_dismiss | Mark an annotation you won't address, with a reason | | pinpoint_reply | Post a message to the annotation thread |

REST API

The server also exposes a REST API at http://localhost:4747:

| Method | Path | Description | |--------|------|-------------| | GET | /sessions | List all sessions | | POST | /sessions | Create a session | | GET | /sessions/:id | Get one session | | DELETE | /sessions/:id | Delete a session | | GET | /sessions/:id/annotations | List annotations | | POST | /sessions/:id/annotations | Create an annotation | | PATCH | /sessions/:id/annotations/:annId | Update annotation status | | DELETE | /sessions/:id/annotations/:annId | Delete an annotation | | GET | /sessions/:id/events | SSE event stream |

Requirements

  • Node.js 18+

Full docs

See the Markpin documentation for watch mode, critique mode, and agent integration guides.