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

calibr-mcp

v0.1.3

Published

MCP server for the Calibr credit risk platform

Downloads

59

Readme

calibr-mcp

MCP server for the Calibr credit risk platform. Score applicants, manage models, and monitor deployments from any MCP-compatible AI agent.

Quick Start

Claude Code (stdio)

claude mcp add calibr -- npx calibr-mcp --api-key sk_live_YOUR_KEY

Cursor (stdio)

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "calibr": {
      "command": "npx",
      "args": ["calibr-mcp", "--api-key", "sk_live_YOUR_KEY"]
    }
  }
}

Remote with OAuth

claude mcp add --transport http calibr https://mcp.cali-br.com/mcp

OAuth login flow opens in your browser automatically.

Remote with API Key

claude mcp add --transport http calibr https://mcp.cali-br.com/mcp --header "Authorization: Bearer sk_live_YOUR_KEY"

Available Tools (23)

Scoring

  • score_applicant — Score a single applicant against a deployed scorecard
  • score_batch — Score up to 1000 applicants in one request

Models

  • list_models — List all deployed scorecard models
  • get_model — Get model detail including scorecard spec
  • deploy_model — Deploy a scorecard to production or staging

Deployments

  • list_deployments — List active deployments
  • get_deployment — Deployment detail with champion/challengers
  • get_deployment_stats — Scoring statistics
  • compare_models — Champion vs challenger comparison
  • promote_challenger — Promote a challenger to champion
  • rollback_deployment — Rollback to previous champion
  • update_traffic — Adjust champion/challenger traffic split

API Keys

  • list_api_keys — List API keys
  • create_api_key — Create a new API key
  • revoke_api_key — Revoke an API key
  • rotate_api_key — Rotate an API key

Webhooks

  • list_webhooks — List webhooks
  • create_webhook — Create a webhook
  • delete_webhook — Delete a webhook
  • test_webhook — Send test event to a webhook

Observability

  • get_usage — Current month API usage
  • get_usage_history — Historical usage
  • get_audit_log — Audit log entries

Authentication

API Key (stdio + HTTP)

Pass your Calibr API key via --api-key flag or CALIBR_API_KEY environment variable.

Get your API key from the Calibr Dashboard.

OAuth (HTTP only)

For the remote HTTP transport at mcp.cali-br.com, OAuth is supported. Your MCP client (Claude Code, Cursor) will open a browser window for you to log in with your Calibr credentials. Tokens are managed automatically.

Environment Variables

| Variable | Description | |----------|-------------| | CALIBR_API_KEY | API key (alternative to --api-key flag) |

License

MIT