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

dataspace-mcp

v2.1.0

Published

Pont MCP LOCAL chiffré : branche Claude Desktop et autres clients MCP sur ta base de connaissance privée DATASPACE (DATAIA), chiffrée de bout en bout. Déchiffrement et recherche en local — ta clé ne quitte jamais ta machine.

Readme

dataspace-mcp — pont local chiffré

Branche Claude Desktop (et tout client MCP) sur ta base de connaissance privée DATASPACE / DATAIA.

Ta base est chiffrée de bout en bout : seul le détenteur de ta clé NOSTR peut la lire. Ce pont tourne sur ta machine, déchiffre tes documents localement avec ta clé, fait la recherche (BM25) en local, et ne renvoie au modèle que les passages pertinents.

Ta clé privée (nsec) ne quitte jamais ta machine. Rien n'est déchiffré côté serveur. Les documents sont récupérés depuis les relais NOSTR (décentralisé) et le cache serveur DATASPACE (du ciphertext uniquement).

Outils exposés

  • search_knowledge — cherche les passages pertinents dans ta base (déchiffrés en local)
  • list_documents — liste tes documents
  • add_document — mémorise un nouveau texte (publié chiffré sur NOSTR)

Configurer Claude Desktop

Réglages → Développeur → Modifier la config (claude_desktop_config.json) :

{
  "mcpServers": {
    "dataspace": {
      "command": "npx",
      "args": ["-y", "dataspace-mcp"],
      "env": { "DATASPACE_NSEC": "nsec1…ta_clé_privée…" }
    }
  }
}

Ta nsec est ta clé privée NOSTR DATASPACE (Mon compte → identité). Redémarre Claude Desktop : les 3 outils apparaissent. Demande par ex. « cherche dans mes notes ce que je sais sur X ».

Pas encore publié sur npm ? Utilise le chemin local :

"command": "node", "args": ["/chemin/vers/dataspace-mcp/index.js"]

⚠️ Sécurité de la clé

La nsec est ta clé maîtresse (elle contrôle ton identité et déchiffre toutes tes données — c'est pourquoi le pont peut lire ta base chiffrée). Le pont ne l'envoie jamais sur le réseau ; il s'en sert seulement en local. Mais elle est stockée en clair dans le fichier de config Claude Desktop : garde ce fichier privé (comme un mot de passe).

Variables d'environnement

  • DATASPACE_NSEC (requis) — ta clé privée nsec1…
  • DATASPACE_URL (optionnel) — défaut https://data-space.world
  • DATASPACE_RELAYS (optionnel) — relais NOSTR séparés par des virgules (défaut wss://relay.damus.io,wss://nos.lol)