API Keys

Manage your API keys for accessing BB-MCP verification services

Total API Keys

0

Total Usage

0

Active Keys

0

Your API Keys

Manage and monitor your API keys. Keep them secure and never share them publicly.

🔐 API Key Security

Important information about your API keys

Why can't I see my full API key?

  • Full API keys are shown only once during creation for security
  • We store only a hashed version and the prefix for identification
  • This prevents key exposure if our database is compromised
  • If you lose your key, create a new one and delete the old one

Quick Integration

Get started with your API key in minutes

1. Install the SDK

npm install @quietstack/bb-mcp

2. Initialize with your API key

import { BBMCP } from '@quietstack/bb-mcp'

const bbmcp = new BBMCP({
  apiKey: 'your-api-key-here',
  environment: 'production'
})

3. Start verifying contexts

const result = await bbmcp.verifyContext({
  agentId: 'your-agent-id',
  contextData: { /* your context */ },
  metadata: { /* optional metadata */ }
})