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/mcpRestart Claude Code after adding the server.Add this to .cursor/mcp.json in your project:
{
"mcpServers": {
"Our API": {
"url": "https://docs.rollerlabs.ai/mcp"
}
}
}Restart Cursor after saving.Add this to .vscode/mcp.json in your project:
{
"servers": {
"Our API": {
"type": "http",
"url": "https://docs.rollerlabs.ai/mcp"
}
}
}Go to Settings โ Connectors โ Add custom connector and enter:
https://docs.example.com/mcpOur MCP server uses HTTP transport. Point any MCP-compatible
client at:
https://docs.rollerlabs.ai/mcpMaking 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"
}
}
}
}Updated 23 days ago
Did this page help you?
