CentralCSP
Get started

Get started with the API and MCP

Create an API key, make your first authenticated request to the CentralCSP REST API, and connect an AI agent over MCP.

Last update:

This is the shortest path to using the CentralCSP API: create a key, make one authenticated request, then connect an AI agent over the Model Context Protocol (MCP).

1. Create an API key

Create an API key from your workspace settings, give it a name, and store the returned value as a secret; treat it like a password. Each key is prefixed ccsp_ and is scoped to that one workspace.

The Create API key dialog with name, expiry and allowed IPs

2. Make your first request

Send the key as a bearer token with each request and call an endpoint from the reference. Requests go to the /v1 base path:

curl -H "Authorization: Bearer ccsp_..." \
  https://api.centralcsp.com/v1/workspaces

The full endpoint list is generated from the OpenAPI spec, see Reference in the sidebar.

3. Connect over MCP

To let an AI assistant query your CentralCSP data, connect its MCP client to the CentralCSP MCP server. There is no API key in that flow, sign-in is OAuth in the browser. The MCP quickstart is the short path from adding the server to reading your first reports.

Next steps

  • Browse every endpoint in the API Reference (sidebar).
  • Read the conceptual material (auth, rate limits, webhooks) in the API & MCP overview.

On this page