MCP access is available on Starter plans and above.
What is MCP?
The Model Context Protocol (MCP) is a standard for AI agents to interact with external tools and services. Instead of writing custom API client code, an agent discovers available tools and calls them directly using structured inputs and outputs. Rendobar exposes its full API surface as MCP tools, allowing AI agents to submit jobs, check status, manage API keys, and query usage without manual integration code.Connecting to Rendobar
Point your MCP client to the Rendobar MCP endpoint:Claude Desktop / Claude Code
Add to your MCP configuration:Custom agents
Any MCP-compatible agent can connect using the SSE transport protocol with an API key in theAuthorization header.
Available tools
Rendobar provides 15 MCP tools:| Tool | Description | REST equivalent |
|---|---|---|
submit_job | Submit a video processing job | POST /jobs |
submit_batch | Submit multiple jobs as a batch | POST /jobs/batch |
get_job | Get job status and details | GET /jobs/:id |
get_job_result | Get the output URL and metadata | GET /jobs/:id/result |
list_jobs | List jobs with filters and pagination | GET /jobs |
cancel_job | Cancel a running or waiting job | POST /jobs/:id/cancel |
list_job_types | List all available job types | GET /job-types |
get_job_schema | Get the Zod schema for a job type | GET /job-types/:type/schema |
get_balance | Get current usage balance | GET /billing/balance |
get_usage | Get usage stats for a date range | GET /billing/usage |
get_org | Get organization details | GET /orgs/:id |
list_members | List organization members | GET /orgs/:id/members |
list_api_keys | List API keys for the org | GET /api-keys |
create_api_key | Create a new API key | POST /api-keys |
revoke_api_key | Revoke an existing API key | DELETE /api-keys/:id |
Authentication
MCP agents authenticate with Rendobar using OAuth, handled by the Better Auth MCP plugin. The flow:
This means agents authenticate once and then operate autonomously within the permissions of the authorized organization.
Example: Agent submits a watermark job
Tool discovery
Agents discover available tools by connecting to the Rendobar MCP server endpoint. The server returns tool definitions with:- Tool name and description
- Input schema (Zod-based, auto-generated from the API route schemas)
- Output schema
Supported agents
Any MCP-compatible agent can use Rendobar, including:- Claude (Anthropic) with MCP tool use
- Custom agents built with the MCP SDK
- Automation platforms with MCP support
Rate limits and billing
MCP tool calls are subject to the same rate limits and credit checks as REST API calls. Eachsubmit_job tool call deducts credits from the organization’s balance, and rate limits are enforced per organization.
Authentication
API key and session auth details
Job Types
All 23 supported operations
Webhooks
Push-based status updates
Credits
Billing and usage tracking