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

@obscura-fhe/mcp

v1.0.4

Published

Obscura MCP servers — User, Developer, and Documentation profiles for privacy-first Web3 agents

Downloads

582

Readme

@obscura-fhe/mcp

Production-grade Model Context Protocol servers for Obscura — three isolated profiles optimized for privacy, FHE boundaries, and developer safety.

Profiles

| Binary | Audience | Live user data | Secrets | |--------|----------|----------------|---------| | obscura-mcp-user | End-user wallet agents | Wallet-scoped reads (Bearer token) | OBSCURA_AGENT_TOKEN only | | obscura-mcp-dev | Contributors / auditors | None | None (denylist enforced) | | obscura-mcp-docs | Integrators learning Obscura | None | None (static portal) |

Install

npm install @obscura-fhe/mcp @obscura-fhe/sdk

Requires Node.js 20+.

Cursor configuration

Add to .cursor/mcp.json (or project MCP settings):

{
  "mcpServers": {
    "obscura-user": {
      "command": "node",
      "args": ["./node_modules/@obscura-fhe/mcp/dist/obscura-mcp-user.js"],
      "env": {
        "OBSCURA_API_URL": "https://obscura-api-n62v.onrender.com",
        "OBSCURA_AGENT_TOKEN": "obsc_at_YOUR_TOKEN_FROM_DOCS_AGENTS"
      }
    },
    "obscura-dev": {
      "command": "node",
      "args": ["./node_modules/@obscura-fhe/mcp/dist/obscura-mcp-dev.js"],
      "env": {
        "OBSCURA_REPO_ROOT": "D:/route/Obscura"
      }
    },
    "obscura-docs": {
      "command": "node",
      "args": ["./node_modules/@obscura-fhe/mcp/dist/obscura-mcp-docs.js"]
    }
  }
}

After npm install @obscura-fhe/mcp, use node + dist/*.js (recommended on Windows). Or: npx -y -p @obscura-fhe/mcp obscura-mcp-docs.

Claude Desktop

{
  "mcpServers": {
    "obscura-docs": {
      "command": "node",
      "args": ["path/to/node_modules/@obscura-fhe/mcp/dist/obscura-mcp-docs.js"]
    }
  }
}

User MCP tools (privacy-first)

  • user_health_api, user_get_chain_config
  • user_get_agent_identity — resolve token → wallet
  • pay_get_encrypted_balance_handle — authenticated wallet, opaque ctHash only
  • pay_build_shield, pay_build_unshield, pay_build_transfer — pre-encrypted InEuint64 required
  • credit_get_market_utilization — public aggregates only
  • credit_build_supply_collateral, credit_build_borrow, credit_build_repay
  • vote_get_proposal_count, vote_get_proposal, vote_build_cast_vote, vote_build_delegate
  • reputation_get_summary, activity_list_for_wallet — require OBSCURA_AGENT_TOKEN (max 25 rows)
  • user_encode_call — unsigned calldata for external wallet signing

Never exposed: decrypt, relay, keeper, worker health, notification writes, bulk activity scans.

Developer MCP

Reads local repo files with denylist (.env, secrets). Tools: dev_read_file, dev_get_deployment_registry, dev_get_sanitize_rules, dev_get_api_routes, and more.

Set OBSCURA_REPO_ROOT to your Obscura clone path.

Documentation MCP

Serves the official docs portal — 14 curated pages. No chain RPC or Supabase.

Tools: docs_list_pages, docs_get_page, docs_search, docs_get_privacy_summary, etc.

Environment variables (User MCP)

| Variable | Required | Description | |----------|----------|-------------| | OBSCURA_API_URL | User | Default: production obscura-api | | OBSCURA_RPC_URL | User | Optional RPC override | | OBSCURA_API_URL | No | Default: production API | | OBSCURA_RPC_URL | No | Default: Arbitrum Sepolia | | OBSCURA_PRIVACY_MODE | No | standard or strict |

Privacy rules

  1. Never decrypt FHE values in MCP
  2. Display encrypted handles as *** — user reveals in Obscura UI
  3. Encrypted writes require EOA wallet (not smart accounts)
  4. Use pre-encrypted InEuint64 from browser CoFHE SDK

Development

cd packages/obscura-mcp
npm install
npm run build
npm test

License

MIT