Quickstart

Sign up, get your MCP endpoint URL and token, and make your first SC Sentinel call in under five minutes.

Note: This is mock/placeholder content for demonstration purposes.

This guide takes you from zero to a working SC Sentinel integration. You'll sign up, retrieve your endpoint URL and API token, and verify the connection with a hello call — all on the free tier, no license required.

Step 1: Sign up

Go to sc-demo.xyz and create an account. Email and password, or sign in with GitHub. After confirming your email you'll land in the dashboard.

Step 2: Find your endpoint URL and token

In the dashboard, open Settings → MCP Integration. You'll see two values:

  • Endpoint URL — something like https://mcp.sc-demo.xyz/v1/<your-account-id>
  • API Token — a long opaque string starting with scs_

Copy both. The token is shown once on creation; if you lose it, revoke and regenerate from the same settings page.

Step 3: Verify with a health call

curl -s \
  -H "Authorization: Bearer scs_your_token_here" \
  https://mcp.sc-demo.xyz/v1/your-account-id/health

A successful response looks like:

{
  "status": "ok",
  "tier": "hello",
  "version": "1.0.0"
}

If you get 401 Unauthorized, double-check the token. If you get 404, verify the account ID in the URL matches your dashboard.

Step 4: Make a hello call

The hello endpoint is the free-tier smoke test. It confirms end-to-end connectivity and returns basic information about your account.

curl -s \
  -H "Authorization: Bearer scs_your_token_here" \
  https://mcp.sc-demo.xyz/v1/your-account-id/hello

Expected response:

{
  "message": "Hello from SC Sentinel",
  "account": "your-org",
  "tier": "hello",
  "premium_context": false
}

"premium_context": false means you're on the hello tier. Once you activate a license, this flips to true and the security-context endpoints become available.

Next steps