Authentication

Add MCP server to your AI tool

Allow AI tools and LLMs to interact with the API documentation portal through MCP.

MCP server URL

https://docs.connect.century.tech/mcp

Standard setup for AI tools providing an mcp.json file

mcp.json
"Connect API MCP server": {
  "url": "https://docs.connect.century.tech/mcp"
}
Close

Authenticating with an API Key

You can authenticate your request by sending your API key in the x-api-key header of your request.

x-api-key: YOUR-API-KEY

In the following example, replace YOUR-API-KEY with your key:

curl --request GET \
  --url "https://connect.century.tech/api/v1/smart-ia/sessions" \
  --header "x-api-key: YOUR-API-KEY"

If you try to use an endpoint without a token or with a token that has insufficient permissions, you will receive a 401 Unauthorized or 403 Forbidden response.

info Keep your API Key Secret: Please treat your API key like a password and avoid sharing it publicly or including it in application code that is publicly accessible.