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

@tinybottleai/pathfinder-cli

v0.2.1

Published

Authenticated CLI + stdio MCP server for AI Pathfinder. Connect a coding tool (Claude Code, Cursor, Codex) to your Pathfinder opportunities.

Readme

@tinybottleai/pathfinder-cli

Authenticated command-line connector for AI Pathfinder. Connect a coding tool (Claude Code, Cursor, Codex, or any MCP-capable tool) to your Pathfinder opportunities.

Install

npm install -g @tinybottleai/pathfinder-cli

Connect your account

pathfinder login

This opens your browser to sign in and authorize. The minted token is stored under ~/.pathfinder/ and can be revoked any time from your Pathfinder account Settings tab.

CLI commands

| Command | What it does | | --- | --- | | pathfinder login | Connect this machine to your Pathfinder account. | | pathfinder logout | Disconnect and delete the stored token. | | pathfinder mcp | Run the stdio MCP server (for a coding tool). | | pathfinder help | Show usage. |

Connect a coding tool

The package ships a stdio MCP server. Register it with your coding tool so the tool can read your Pathfinder opportunities in-session.

Claude Code:

claude mcp add pathfinder -- pathfinder mcp

For Cursor, Codex, or another tool, point its MCP config at the pathfinder mcp command.

Then ask the tool to list your opportunities and pull one up.

How it works

pathfinder mcp is a thin proxy. It forwards the tool's requests to Pathfinder's hosted connector (/api/mcp) using your stored token, so the tools are defined once on the server and the command-line and web connectors always match. The tools:

| Tool | What it returns | | --- | --- | | list_opportunities | Your opportunities (id, title, lifecycle). | | get_opportunity | One opportunity's brief, objectives, and method (Markdown). | | init_opportunity | A readiness kit (e.g. CLAUDE.md / AGENTS.md) to bootstrap a project. |

Scope is derived from your role: a team lead's connection reads the team's shared opportunities; everyone else reads their own.

Environment

| Variable | Purpose | | --- | --- | | PATHFINDER_API_URL | Override the Pathfinder API origin (default: production). | | PATHFINDER_CONFIG_DIR | Override the credential directory (default: ~/.pathfinder). |

Notes

  • The token is bearer-only. It does not bypass per-route authorization on the server.
  • The stdio MCP server writes JSON-RPC to stdout and diagnostics to stderr.