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

juridica-mcp-server

v1.0.0

Published

MCP server for Jurídica — Panamanian legal AI platform. Search 10,500+ legal articles, red-team legal arguments, and calculate labor/notary fees.

Readme

juridica-mcp-server

MCP server for Jurídica — the Panamanian legal AI platform.

Gives any MCP-compatible AI client (Claude Desktop, Cursor, etc.) direct access to:

  • 10,500+ Panamanian legal articles via semantic search
  • Labor settlement calculator — full liquidación laboral per Código de Trabajo
  • Notary fee calculator — honorarios notariales per Decreto Ejecutivo 20
  • Devil's Advocate / Red Team — AI attacks your legal argument to find weaknesses before opposing counsel does

Tools

| Tool | Description | Cost | |---|---|---| | juridica_search_legal | Semantic search over Panamanian law | $0.01 USDC | | juridica_calculate_labor | Labor settlement calculator | $0.10 USDC | | juridica_calculate_notary | Notary fee calculator | $0.10 USDC | | juridica_red_team_argument | Devil's advocate — attack your legal argument | $0.15 USDC |

Payments are made in USDC via the x402 protocol. No subscriptions, no forms — pay per use.

Setup

1. Get an API key

Send USDC to the Jurídica wallet and claim your key:

curl -X POST https://www.juridicapanama.com/api/v1/claim \
  -H "Content-Type: application/json" \
  -d '{"tx_hash": "YOUR_TRANSACTION_HASH"}'

Full instructions at juridicapanama.com/developers.

2. Install and build

npm install
npm run build

3. Configure in Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "juridica": {
      "command": "node",
      "args": ["/path/to/juridica-mcp-server/dist/index.js"],
      "env": {
        "JURIDICA_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

4. Configure in Cursor

Add to your MCP settings:

{
  "juridica": {
    "command": "node",
    "args": ["/path/to/juridica-mcp-server/dist/index.js"],
    "env": {
      "JURIDICA_API_KEY": "sk_live_your_key_here"
    }
  }
}

Usage Examples

Once connected, you can ask your AI assistant:

  • "Busca los artículos del Código de Trabajo sobre despido injustificado"
  • "Calcula la liquidación de un empleado con salario de $1,200 que trabajó 5 años y fue despedido sin causa"
  • "Red-team my argument: my client was fired without cause after 5 years and the employer claims low performance but has no written evaluations"
  • "Calculate notary fees for a $200,000 property sale in Panama"

Development

npm run dev   # watch mode
npm run build # compile TypeScript
npm start     # run server