Sign In

@hlos/staamp-mcp

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@hlos/staamp-mcp

STAAMP (Secure Trust Agent Access Management Protocol) MCP server - enables AI assistants to manage secrets without ever receiving credentials

latest
Source
npmnpm
Version
0.1.1
Version published
Maintainers
1
Created
Source

@hlos/staamp-mcp

AI agents get capabilities, not credentials.

STAAMP MCP Server enables AI assistants (Claude, Cursor, etc.) to manage secrets and authenticate to services without ever receiving your credentials.

Why HLOS?

Traditional ApproachHLOS STAAMP
Agent receives API keys/tokensAgent NEVER receives credentials
Leaked prompts = leaked secretsNothing to leak
Trust the agent with credentialsTrust only HLOS

The most secure credential is one the AI never touches.

Security Model

RiskHow STAAMP Protects
Prompt injection leaks secretsAgent never has secrets to leak
Runaway agent spendingBudget envelopes with hard limits
Malicious action executionFinancial gating — no balance = no action
Screen capture exposureScreen-invisible injection
Memory forensicsToken expiry + disposal (see note below)

Security Guarantee

HLOS backs its security with up to $50,000 coverage for credential breaches on paid plans. Learn more

What is STAAMP?

Secure Trust Agent Access Management Protocol — a credential isolation protocol where:

  • Agents NEVER receive credentials — Unlike OAuth, your passwords and tokens are never exposed to the AI
  • Screen-invisible injection — Credentials injected directly into browsers, invisible to screen capture
  • Financial gating — Every action checks wallet balance and budget limits
  • Token lifecycle — Access tokens have automatic expiry and are cleared on disposal

Memory Handling Note

JavaScript cannot guarantee true memory zeroing. The MCP client:

  • Token Expiry: Access tokens automatically expire and are cleared after use
  • Dispose Method: Calling dispose() dereferences sensitive data to aid garbage collection
  • Limitation: Memory may persist until GC runs and could theoretically be extracted via memory dump

For highest-security deployments requiring guaranteed memory clearing, consider native Node.js addons with secure memory primitives or HSMs for key material.

Quick Start

Prerequisites

  • Node.js >= 18.0.0
  • An HLOS account (hlos.ai)

Installation

npx @hlos/staamp-mcp

Get Your Access Token

Claude Desktop

Add to claude_desktop_config.json:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "hlos": {
      "command": "npx",
      "args": ["-y", "@hlos/staamp-mcp"],
      "env": {
        "HLOS_ACCESS_TOKEN": "your_access_token_here"
      }
    }
  }
}

Cursor

Add to your Cursor MCP settings:

{
  "hlos": {
    "command": "npx",
    "args": ["-y", "@hlos/staamp-mcp"],
    "env": {
      "HLOS_ACCESS_TOKEN": "your_access_token_here"
    }
  }
}

Available Tools

Secrets Management

ToolDescription
list_secretsList secrets with metadata
check_secret_existsVerify secret existence
get_secret_infoGet secret details (never the value)
suggest_missing_secretsAnalyze code for missing secrets
create_secretRequest secret creation (requires approval)
sync_to_platformSync to Vercel, GitHub, Supabase
check_healthSecret health dashboard

Agent Authentication (STAAMP)

ToolDescription
request_sessionRequest authenticated session injection
list_sessionsList captured sessions (no credentials exposed)
check_session_statusCheck if session is valid
get_totp_codeGenerate 2FA codes without exposing secret

Infrastructure & Spending

ToolDescription
request_capabilityProvision SMS, databases, APIs via spending gate
check_walletCheck wallet balance and limits
list_capabilitiesList available infrastructure
list_envelopesView budget envelopes for agents

How STAAMP Differs from OAuth

Traditional OAuth/Tokens        STAAMP/HLOS
──────────────────────         ─────────────────────────
Agent receives token      →    Agent NEVER gets credentials
Agent stores/uses token   →    HLOS injects directly to service
Token in context window   →    Nothing in context to leak
Token can be extracted    →    Nothing to extract
No spending controls      →    Budget envelopes + financial gating

Trust & Verification

Open Source: This MCP server is open source. Audit the code.

Who We Are: HLOS is built by the team behind SevenRooms ($1.2B exit) and Gilt Groupe ($250M exit). About us

Patents: 3 patents filed, 37 claims protecting the STAAMP architecture.

Security Guarantee: Up to $50K coverage for breaches. Details

Getting Started Path

We recommend a gradual trust ladder:

  • Development — Start with dev/test secrets
  • Staging — Graduate to internal tools
  • Production — Full trust when you're ready

No pressure. Security is about comfort, not speed.

License

MIT — See LICENSE

Built with STAAMP by HLOS — The credential layer for AI agents.

Keywords

mcp

FAQs

Package last updated on 28 Dec 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts