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

@robotixai/lexius-mcp

v0.2.0

Published

MCP server for Lexius compliance platform — stdio and HTTP transports

Downloads

189

Readme

@robotixai/lexius-mcp

MCP server for the Lexius AI compliance platform. Connect Claude Desktop, Claude Code, or any MCP client to a provenance-tracked regulatory compliance database covering 10 EU regulations (GDPR, EU AI Act, DORA, DSA, DMA, Data Act, DGA, CRA, MiCA, eIDAS 2.0).

Quick Start

# Proxy mode — connect to a hosted Lexius API (no database required)
LEXIUS_API_URL=https://your-lexius-instance.example.com LEXIUS_API_KEY=lx_... npx @robotixai/lexius-mcp

# Direct mode — connect to your own Postgres
DATABASE_URL=postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@localhost:5432/$POSTGRES_DB npx @robotixai/lexius-mcp

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "lexius": {
      "command": "npx",
      "args": ["@robotixai/lexius-mcp"],
      "env": {
        "LEXIUS_API_URL": "https://your-lexius-instance.example.com",
        "LEXIUS_API_KEY": "lx_your_key_here"
      }
    }
  }
}

Available Tools

| Tool | Description | |------|-------------| | legalai_classify_system | Classify an AI system under a legislation's risk framework | | legalai_get_obligations | Get compliance obligations by role, risk level, legislation | | legalai_calculate_penalty | Calculate penalty exposure for a violation type | | legalai_get_article | Retrieve verbatim article text (AUTHORITATIVE from EUR-Lex) | | legalai_get_deadlines | List compliance deadlines | | legalai_search_knowledge | Semantic search across articles, obligations, FAQ | | legalai_answer_question | Answer compliance questions using the FAQ knowledge base | | legalai_run_assessment | Run structured compliance assessments | | legalai_list_legislations | List available legislations | | legalai_get_article_history | View article revision history | | legalai_get_derivation_chain | Trace an obligation back to its source articles | | legalai_get_article_extracts | View deterministically-extracted facts (fines, dates, cross-refs) | | legalai_run_swarm_assessment | Run a parallel hivemind assessment across all articles |

Provenance

Every response includes a provenance tier:

  • AUTHORITATIVE — verbatim from official regulation text (EUR-Lex CELLAR)
  • CURATED — written or reviewed by a domain expert
  • AI_GENERATED — model output, flagged for review

Modes

Proxy Mode

Set LEXIUS_API_URL and LEXIUS_API_KEY. The MCP server translates tool calls into HTTP requests to the hosted API. No database required.

Direct Mode

Set DATABASE_URL. The MCP server connects directly to a Postgres database with the Lexius schema.

The easiest way to get a ready-made database is with our Docker image — schema and all 5 migrations are applied automatically on first start:

docker run -d -p 5432:5432 \
  -e POSTGRES_PASSWORD=$POSTGRES_PASSWORD \
  -e POSTGRES_DB=$POSTGRES_DB \
  -e POSTGRES_USER=$POSTGRES_USER \
  robotixai/lexius-db

Then point the MCP server at it:

DATABASE_URL=postgresql://$POSTGRES_USER:$POSTGRES_PASSWORD@localhost:5432/$POSTGRES_DB npx @robotixai/lexius-mcp

See the main repo for seeding data and fetching verbatim regulation text.

If both are set, direct mode takes precedence.

Legislations Supported

  • EU AI Act (Regulation 2024/1689) — 113 articles + 13 annexes
  • DORA (Regulation 2022/2554) — 64 articles

Links

License

MIT