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

@scopeful/mcp

v1.5.0

Published

Scopeful MCP proxy — connects AI agents to the Scopeful pricing engine via STDIO. No npx, no mcp-remote, no path issues.

Downloads

467

Readme

@scopeful/mcp

STDIO MCP proxy that connects MCP-native agents (Claude Desktop, Claude Code, Cursor, Windsurf, Antigravity, Cline, Continue) to the Scopeful pricing engine.

The proxy speaks MCP locally on stdin/stdout, forwards tool calls to https://www.scopeful.org/api/mcp over HTTPS, and ships back the responses. No mcp-remote, no path issues, no npx gymnastics.

For terminal/subprocess use, install @scopeful/cli instead. Both packages hit the same endpoint, use the same key, and are tracked identically.

Install + configure

npm install -g @scopeful/mcp

The postinstall hook prints a paste-ready snippet for your AI agent to configure itself. Read it after install.

Generate an API key at https://scopeful.org/pro/api, then set it in the environment for the agent that will spawn the proxy.

Claude Code / Claude Desktop

Add to claude_desktop_config.json (or .mcp.json for Claude Code):

{
  "mcpServers": {
    "scopeful": {
      "command": "npx",
      "args": ["-y", "@scopeful/mcp"],
      "env": {
        "SCOPEFUL_API_KEY": "sk_mcp_your_api_key_here"
      }
    }
  }
}

Cursor

Settings > Features > MCP > + Add New MCP Server:

  • Name: scopeful
  • Type: command
  • Command: npx -y @scopeful/mcp
  • Env: SCOPEFUL_API_KEY=sk_mcp_your_api_key_here

Windsurf / OpenCode / other MCP clients

Add the same scopeful server block under mcpServers in your client's workspace or global config.

What you get

The proxy exposes whatever tools the Scopeful MCP server advertises at startup — currently 8 tools for deterministic cost calculation, discovery, skill delivery, and workflow retrieval:

| Tool | Use it for | | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------- | | recommend_tool | Start here for discovery. Ranked tool+model+plan combos with cost rationale + integration-skill pointers. | | get_skill | Universal skill delivery. Returns the full SKILL.md playbook for a tool by slug. No install required, works for every MCP client. | | calculate_pricing | Exact cost for a named model + volume + access. | | compare_tools | Side-by-side ranking of 2-3 named tools. | | list_tools | Catalog enumeration, filterable by category. | | list_models | Canonical model catalog, filterable by type/kind/provider. | | get_tool | Full pricing structure for one tool (plans, models, bundles); also returns the tool's integration_skills array. | | retrieve_workflow | Fuzzy-searches vetted multi-step workflows. Pro subscribers only. | | team_workflows | Search the caller's team-scoped workflow templates. Requires a team-scoped API key. | | get_usage | Return the caller's MCP usage for the current calendar month. Personal + team (when team-scoped). |

Every response carries meta.staleness_days — surface it to the user when it matters.

Install the agent skill (optional)

scopeful-mcp setup

Drops the scopeful skill into ~/.agents/skills/, ~/.claude/skills/, and ~/.cursor/skills/. Restart your agent to pick it up.

Environment variables

| Variable | Required | Default | Notes | | ------------------ | -------- | ---------------------------------- | -------------------------------------------------------------------------------------------------- | | SCOPEFUL_API_KEY | Yes | — | Bearer token for https://www.scopeful.org/api/mcp. Create one at https://scopeful.org/pro/api. | | SCOPEFUL_MCP_URL | No | https://www.scopeful.org/api/mcp | Override the upstream endpoint. Useful for local development against a mock server. |

Requirements

  • Node.js >=18 (declared in engines).
  • An MCP client capable of spawning the proxy and speaking JSON-RPC over stdio.

License

MIT