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

@dubstrata/mcp-server

v1.4.0

Published

Lightweight Model Context Protocol (MCP) Server Proxy for the Dubstrata Agentic CDN

Readme

🚀 Dubstrata MCP Server Proxy

An ultra-lightweight, zero-dependency Model Context Protocol (MCP) server that acts as a secure local client proxy for the Dubstrata Agentic CDN and Graph RAG engine.

Instead of compiling and hosting heavyweight Python environment stacks, relational databases, vector storage indices, or Redis cache layers locally on your machine, this proxy server runs instantly via standard I/O (stdio) and forwards surgical graph requests to the live production server at https://api.dubstrata.com using your DUBSTRATA_API_KEY.


📦 Features

  • Zero Local Footprint: No heavy local setup. Just Node.js.
  • Surgical Graph RAG Tools: Exposes 10 powerful tools to explore, query, scrape, audit, and analyze the self-healing knowledge mesh.
  • Dynamic IDE Support: Perfectly compatible with Claude Desktop, Cursor IDE, Windsurf, and other enterprise AI coding environments.
  • Centralized Telemetry & ROI Logs: Automatically registers agent queries, measures token compression ratios, tracks real-time cost savings, and interacts seamlessly with the Ed25519 wallet micropayments framework.

⚙️ Quick Start

1. Claude Desktop Setup

Add this to your claude_desktop_config.json file (typically located at %APPDATA%\Claude\claude_desktop_config.json on Windows or ~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "dubstrata": {
      "command": "npx",
      "args": ["-y", "@dubstrata/mcp-server"],
      "env": {
        "DUBSTRATA_API_KEY": "your_api_key_here"
      }
    }
  }
}

2. Cursor IDE Integration

  1. Open Cursor and head to Settings -> Features -> MCP.
  2. Click + Add New MCP Server.
  3. Fill in the following details:
    • Name: Dubstrata
    • Type: command
    • Command: npx -y @dubstrata/mcp-server
  4. Click Save.
  5. Note: Make sure DUBSTRATA_API_KEY is loaded into your local environment variables so the shell can pick it up.

🛠️ Exposed Surgical Graph Tools

Once configured, the AI agent will automatically detect and utilize the following 10 surgical tools:

  1. ingest_knowledge – Ingests knowledge into the Graph RAG. Scrapes web URLs or accepts raw text.
  2. query_graph – Performs dense Graph RAG searches via vector similarity and graph traversal. Automatically triggers self-reflective JIT fallbacks (Wikipedia/Deep Crawls) if the context is missing.
  3. check_source_trust – Analyzes historical trust rates, fallacies, and critical security warnings/prompt injection risks of web domains.
  4. get_all_facts – Pulls all active claims and verified facts known about an entity directly from ArcadeDB.
  5. get_historical_timeline – Acts as a time machine to fetch superseded/historical versions of claims for audit trails.
  6. get_interaction_hooks – Extracts actionable developer integration next-steps linked to a document source.
  7. find_conflicts – Groups facts by source URLs to isolate direct factual contradictions or conflicts.
  8. get_entities_by_category – Finds and drills down into entities by categories (e.g., PERSON, ORGANIZATION, TECH).
  9. submit_feedback – Submits authenticated score and reason feedback for logged transactions to tune consensus models.
  10. compile_intelligence_report – Synthesizes deep RAG contexts into formal, multi-section analytical intelligence reports.

🔒 Configuration

You can customize the proxy using the following environment variables:

| Variable | Description | Default | | :--- | :--- | :--- | | DUBSTRATA_API_KEY | Required. Your authorization key to sign queries and billing usage. | None | | DUBSTRATA_API_URL | Optional domain override (e.g., for local developer environments or staging tests). | https://api.dubstrata.com |


📄 License

This project is licensed under the MIT License.