← Registry

API Tools

blacklabelbots.com

Provides API integration tools for the Continuum platform to manage offers, audits, sponsor packets, referrals, and checkout with Stripe payment links.

5 endpoints21 known toolsFirst detected August 23, 2026Last detected August 23, 2026

ENDPOINT 1

https://continuum.blacklabelbots.com/mcp

No auth detected

MCP server metadata

Name
black-label-continuum
Version
0.1.0
Capabilities
tools
Server instructions

Inspect the offer, run the deterministic audit, prepare a sponsor packet, and create checkout only after explicit sponsor confirmation.

Known tools 5

continuum_get_offer

A general-tools contract lookup that returns the canonical price, acceptance, delivery, and checkout terms without creating anything.

Inferred read-only
continuum_run_audit

An observability readiness audit that scores eight self-declared continuity capabilities without fetching evidence or invoking a model.

Inferred read-only
continuum_create_sponsor_packet

A general-tools sponsor workflow that converts a validated audit into a factual recommendation with the exact published terms.

Inferred read-only
continuum_register_referral

An api-integration workflow that creates one signed referral link and a provisional noncash Continuum Credits identity; it does not fetch the Agent Card.

Inferred read-only
continuum_create_checkout

An api-integration workflow that, after explicit sponsor confirmation of current terms, creates a hosted Stripe URL with all eligible dynamic payment methods.

Potential side effects

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.black-label-continuum]
url = "https://continuum.blacklabelbots.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "black-label-continuum": {
      "type": "http",
      "url": "https://continuum.blacklabelbots.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: black-label-continuum
Remote MCP URL: https://continuum.blacklabelbots.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "black-label-continuum": {
      "url": "https://continuum.blacklabelbots.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "black-label-continuum": {
      "type": "http",
      "url": "https://continuum.blacklabelbots.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "black-label-continuum",
  "transport": "streamable-http",
  "url": "https://continuum.blacklabelbots.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://continuum.blacklabelbots.com/agent/mcp

No auth detected

MCP server metadata

Name
Black Label Continuum site MCP
Version
2026.09.15
Capabilities
tools
Server instructions

Read-only tools for continuum.blacklabelbots.com. No credentials. Rate limited; stay under one call per second. See https://continuum.blacklabelbots.com/auth.md.

Known tools 3

site_info

What Black Label Continuum (continuum.

Inferred read-only
search_pages

Find pages on continuum.

Inferred read-only
read_page

Read one https://continuum.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.black-label-continuum-site-mcp]
url = "https://continuum.blacklabelbots.com/agent/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "black-label-continuum-site-mcp": {
      "type": "http",
      "url": "https://continuum.blacklabelbots.com/agent/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: black-label-continuum-site-mcp
Remote MCP URL: https://continuum.blacklabelbots.com/agent/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "black-label-continuum-site-mcp": {
      "url": "https://continuum.blacklabelbots.com/agent/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "black-label-continuum-site-mcp": {
      "type": "http",
      "url": "https://continuum.blacklabelbots.com/agent/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "black-label-continuum-site-mcp",
  "transport": "streamable-http",
  "url": "https://continuum.blacklabelbots.com/agent/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 3

https://mcp.blacklabelbots.com/mcp

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.blacklabelbots-com]
url = "https://mcp.blacklabelbots.com/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "blacklabelbots-com": {
      "type": "http",
      "url": "https://mcp.blacklabelbots.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: blacklabelbots-com
Remote MCP URL: https://mcp.blacklabelbots.com/mcp

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "blacklabelbots-com": {
      "url": "https://mcp.blacklabelbots.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "blacklabelbots-com": {
      "type": "http",
      "url": "https://mcp.blacklabelbots.com/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "blacklabelbots-com bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "blacklabelbots-com",
  "transport": "streamable-http",
  "url": "https://mcp.blacklabelbots.com/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 4

https://operator.blacklabelbots.com/agent/mcp

No auth detected

MCP server metadata

Name
Black Label Operator site MCP
Version
2026.09.15
Capabilities
tools
Server instructions

Read-only tools for operator.blacklabelbots.com. No credentials. Rate limited; stay under one call per second. See https://operator.blacklabelbots.com/auth.md.

Known tools 3

site_info

What Black Label Operator (operator.

Inferred read-only
search_pages

Find pages on operator.

Inferred read-only
read_page

Read one https://operator.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.black-label-operator-site-mcp]
url = "https://operator.blacklabelbots.com/agent/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "black-label-operator-site-mcp": {
      "type": "http",
      "url": "https://operator.blacklabelbots.com/agent/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: black-label-operator-site-mcp
Remote MCP URL: https://operator.blacklabelbots.com/agent/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "black-label-operator-site-mcp": {
      "url": "https://operator.blacklabelbots.com/agent/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "black-label-operator-site-mcp": {
      "type": "http",
      "url": "https://operator.blacklabelbots.com/agent/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "black-label-operator-site-mcp",
  "transport": "streamable-http",
  "url": "https://operator.blacklabelbots.com/agent/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 5

https://blacklabelbots.com/mcp

No auth detected

MCP server metadata

Name
Black Label Bots site MCP
Version
2026.09.15
Capabilities
tools
Server instructions

Tools for blacklabelbots.com: read the site, list what can be bought (list_products) and start a purchase (create_checkout, get_checkout). create_checkout never charges anything: it returns a continue_url where the buyer pays on the Stripe-hosted checkout page. No credentials. list_services shows current crypto-only offers. Paid run_* tools return x402 requirements without payment_signature; supplying a payer-authorized signature executes and can settle payment. Rate limited; stay under one call per second. See https://blacklabelbots.com/auth.md.

Known tools 10

site_info

What Black Label Bots (blacklabelbots.

Inferred read-only
search_pages

Find pages on blacklabelbots.

Inferred read-only
read_page

Read one https://blacklabelbots.

Inferred read-only
list_products

Everything an agent can buy from Black Label Bots, with Stripe-verified prices, billing terms, delivery and live availability.

Inferred read-only
create_checkout

Start a purchase of one offer.

Potential side effects
get_checkout

Read a checkout started with create_checkout.

Inferred read-only
list_services

Read current website service prices, availability and payment requirements.

Potential side effects
run_ai_search_audit

AI search readiness audit.

Inferred read-only
run_structured_data_pack

Structured data pack.

Inferred read-only
run_llms_txt_draft

llms.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.black-label-bots-site-mcp]
url = "https://blacklabelbots.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "black-label-bots-site-mcp": {
      "type": "http",
      "url": "https://blacklabelbots.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: black-label-bots-site-mcp
Remote MCP URL: https://blacklabelbots.com/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "black-label-bots-site-mcp": {
      "url": "https://blacklabelbots.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "black-label-bots-site-mcp": {
      "type": "http",
      "url": "https://blacklabelbots.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "black-label-bots-site-mcp",
  "transport": "streamable-http",
  "url": "https://blacklabelbots.com/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Loading Trust v2 evidence…

Checking the associated registrable domain. The BuiltWith key remains server-side.

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.