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

@corbel-blue/sdk

v1.0.1

Published

Corbel Blue Official SDK & MCP Server — Confidential hardware execution enclaves, x402 settlement rails, and developer sandboxes for autonomous AI agents.

Readme

Corbel Blue SDK (@corbel-blue/sdk)

Official client library and Model Context Protocol (MCP) server for Corbel Blue (https://corbel.blue), providing hardware-isolated silicon enclaves, cryptographic attestation verification, and x402 settlement rails for autonomous AI agents.

npm version License: MIT Status: Developer Beta


⚡ Global Developer Beta Schedule

Important Launch Notice: The Corbel Blue Global Developer Beta opens on October 1, 2026. You can install the SDK, configure your Model Context Protocol (MCP) clients, inspect TypeScript typings, and pre-register your sandbox API keys starting today. Live bare-metal hardware enclaves (Intel TDX / AMD SEV-SNP) and automated clearing rails unlock on October 1st.


📦 Installation

npm install @corbel-blue/sdk

Or using pnpm / yarn:

pnpm add @corbel-blue/sdk
yarn add @corbel-blue/sdk

🤖 Model Context Protocol (MCP) Integration

Corbel Blue features native support for the open Model Context Protocol (MCP), allowing LLMs (Claude Desktop, Cursor, Gemini, AutoGen, CrewAI, LangChain) to spawn hardware enclaves and settle payments directly via standard JSON-RPC 2.0 stdio tools.

Claude Desktop Configuration

Add Corbel Blue to your claude_desktop_config.json:

{
  "mcpServers": {
    "corbel-blue": {
      "command": "npx",
      "args": ["-y", "@corbel-blue/sdk"]
    }
  }
}

Cursor / Windsurf Configuration

Add Corbel Blue to your MCP settings file:

{
  "mcpServers": {
    "corbel-blue": {
      "command": "npx",
      "args": ["-y", "@corbel-blue/sdk"]
    }
  }
}

Available MCP Tools

| Tool | Description | |---|---| | corbel_provision_sandbox | Pre-provisions a free developer sandbox API key with 100,000 monthly requests. | | corbel_enclave_spawn | Requests an isolated silicon hardware enclave (intel-tdx, amd-sev-snp, nvidia-cc). | | corbel_enclave_attest | Verifies hardware attestation measurements confirming untampered execution. | | corbel_micro_clear | Clears high-speed machine micro-payments across multi-rail settlement networks. | | corbel_check_quota | Inspects remaining monthly requests, latency telemetry, and rate limits. | | corbel_evidence_verify | Validates on-chain immutable evidence references (x402ev/1). |


🚀 TypeScript Quickstart

1. Pre-Provision a Sandbox Key

import { CorbelClient } from '@corbel-blue/sdk';

const client = new CorbelClient();

const sandbox = await client.provisionSandbox({
    agentName: 'autonomous-alpha-trader',
    useCase: 'autonomous-agent',
});

console.log('Sandbox Key:', sandbox.apiKey);
console.log('Launch Date:', sandbox.publicBetaLaunch);
// Output:
// Sandbox Key: crb_test_...
// Launch Date: 2026-10-01

2. Check Launch Status & Quota

import { CorbelClient, isPreLaunch, getPreLaunchStatus } from '@corbel-blue/sdk';

console.log('Pre-Launch Active:', isPreLaunch());
console.log(getPreLaunchStatus());

const client = new CorbelClient({ apiKey: 'crb_test_your_key_here' });
const quota = await client.checkQuota();

console.log('Remaining Requests:', quota.remainingRequests);

3. Verify Hardware Attestation Quotes

import { CorbelClient } from '@corbel-blue/sdk';

const client = new CorbelClient({ apiKey: 'crb_test_your_key_here' });

const attestation = await client.verifyAttestation({
    sessionId: 'sess_intel_tdx_1a2b3c4d',
});

console.log('Silicon Vendor:', attestation.siliconVendor);
console.log('Verdict:', attestation.verdict);

🛡️ Architecture & Security

  • Strict Non-Custodial Operation: Corrente Labs does not custody, transmit, pool, or manage customer funds.
  • Hardware Isolation: Silicon-level memory encryption physically segregates in-flight agent code and confidential data from host environments.
  • Cryptographic Measurement: Cryptographic measurement quotes verify unmodified execution prior to settlement triggering.
  • Zero Counterparty Gas Overhead: Two-phase decoupled clearing ensures autonomous workflows never trap capital or suffer pre-settlement failure penalties.

⚖️ Corporate & Legal