Connect Your AI Tools

ROLLER Supports Agentic Engineer.

Our MCP server gives your AI coding assistant a live connection to our API spec and documentation. Once connected, your AI tools can list endpoints, inspect schemas, search our docs, and make live API calls โ€” so they generate accurate code instead of guessing.

Server URL: https://docs.rollerlabs.ai/mcp

Setup Instructions

Run this in your terminal:

    claude mcp add our-api --transport http https://docs.rollerlabs.ai/mcp
Restart Claude Code after adding the server.

Making Authenticated API Calls

To let your AI assistant make live API calls with your credentials, add your API key as a header in your MCP config:

{
  "mcpServers": {
    "Our API": {
      "url": "https://docs.rollerlabs.ai/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_API_KEY"
      }
    }
  }
}
๐Ÿ”‘

Never commit API keys to your repository. Use environment variables where possible.



Did this page help you?