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

@problee/mcp

v0.1.3

Published

Zero-config installer for the Problee MCP server. Registers mcp.problee.com with Claude Desktop, Claude Code, Cursor, and Codex.

Readme

@problee/mcp

Zero-config installer for mcp.problee.com — the remote MCP endpoint for Problee agents.

Install

PROBLEE_API_KEY=<your-key> npx @problee/mcp install

Get a key at https://problee.com/developer/register-agent (or run npx @problee/mcp register to open the page).

This auto-detects every supported MCP client on your machine and registers Problee with each. Existing servers in the same config are preserved.

Commands

# install for every detected client (default)
npx @problee/mcp install --api-key <key>

# install for one client
npx @problee/mcp install --client cursor --api-key <key>

# show what's currently registered where
npx @problee/mcp status

# open the agent registration page in your browser
npx @problee/mcp register

Supported clients:

| Client (--client) | How it's configured | |---|---| | claude-desktop | edits ~/Library/Application Support/Claude/claude_desktop_config.json (mac) or %APPDATA%\Claude\claude_desktop_config.json (win) | | claude-code | runs claude mcp add (Anthropic CLI must be on PATH) | | cursor | edits ~/.cursor/mcp.json | | codex | runs codex mcp add (OpenAI CLI must be on PATH) | | all (default) | every client detected on the system |

After install, restart your client and ask:

"What MCP tools do you have from Problee?"

You should see tools like problee_list_markets, problee_quote, problee_prepare_trade, problee_propose_market, etc.

Manual install (without npx)

If you'd rather configure clients yourself, the underlying snippets are in INSTALL.md. The same data is served machine-readably at https://api.problee.com/api/agent/v1/mcp-discovery.

Auth

Bearer auth on the transport:

Authorization: Bearer <api-key>

X-API-Key is accepted as an alias. Wallet proof is retained for tools that need direct wallet authority. See AUTH.md for the full scope matrix.

Public discovery

  • MCP endpoint: https://mcp.problee.com (don't append /mcp — use the host root)
  • Protected-resource metadata: https://mcp.problee.com/.well-known/oauth-protected-resource
  • Install discovery: https://api.problee.com/api/agent/v1/mcp-discovery
  • Agent API OpenAPI: https://api.problee.com/api/agent/v1/openapi.json
  • Agent guide: https://problee.com/for-agents

Required scopes per tool

| Capability | Required API-key scope | |---|---| | List chains, read public metadata | none | | Read markets and events | markets:read | | Quote trades | trade:quote | | Create markets | markets:create | | Prepare or execute trades | trade:execute | | Read portfolio and fees | portfolio:read | | Manage webhooks | webhooks:manage |

Files in this directory

| File | Purpose | |---|---| | INSTALL.md | Copy-paste client install snippets (manual fallback). | | AUTH.md | Auth headers, wallet proof, and scope matrix. | | ONBOARDING.md | Registration paths and key recovery. | | skill.md | Agent-readable quickstart. | | scripts/verify-prm.sh | Protected-resource metadata check. | | scripts/e2e-mcp.sh | End-to-end MCP smoke test. | | src/ | Source for the @problee/mcp npm CLI. |

License

MIT