Integration Options
MCP Server
Connect your AI assistant to Cekura’s API via the Model Context Protocol for real-time tool access.
AGENTS.md
Add an AGENTS.md file to your repo to teach AI assistants how to use Cekura for your project.
Quick Setup
1. Connect via MCP
The fastest way to integrate is through the MCP server. This gives your AI assistant direct access to Cekura’s API tools.- Claude Code
- Cursor / VS Code
2. Add AGENTS.md to Your Repo
Drop an AGENTS.md template into your project root. This teaches any AI assistant the Cekura-specific workflows and terminology for your project.3. Discover Documentation
Cekura’s documentation is available in agent-friendly formats:| Resource | URL | Purpose |
|---|---|---|
| llms.txt | https://docs.cekura.ai/llms.txt | Page index with descriptions for AI discovery |
| llms-full.txt | https://docs.cekura.ai/llms-full.txt | Full documentation content in markdown |
| OpenAPI Spec | https://api.cekura.ai/api/schema/ | Complete API specification |
Common Agent Workflows
Test Your Agent After a Deploy
Create Metrics from Agent Description
Review Call Quality
Generate Evaluators from Real Calls
Best Practices
Start with read-only operations
Start with read-only operations
Begin with listing agents, viewing results, and reading call logs before using write operations like creating metrics or running scenarios.
Use project scoping
Use project scoping
If you have multiple projects, always specify the
project_id parameter to scope your queries. This prevents cross-project data leakage.Monitor context window usage
Monitor context window usage
Large responses (detailed transcripts, full result sets) can consume significant context. Use pagination parameters (
page, limit) to control response size.Combine with CI/CD
Combine with CI/CD
Use Cekura’s GitHub Actions integration alongside MCP to run evals on every PR and review results from your agent.
Next Steps
MCP Setup Guide
Detailed MCP server configuration for all supported clients
AGENTS.md Template
Copy-paste template for your project
API Reference
Complete API documentation
Testing Guide
Learn how to create and run evaluators