Skip to main content
Rendobar exposes 18 tools through its MCP server at api.rendobar.com/mcp. These map 1:1 with the REST API endpoints.

Job management

submit_job
tool
Submit a new media processing job. Accepts type, inputs, and params.
submit_batch
tool
Submit multiple jobs as a batch. Returns a batch ID for tracking.
get_job
tool
Get job status, result, and metadata by job ID.
get_job_result
tool
Get the job output including download URL and processing metadata.
list_jobs
tool
List jobs with optional filters (status, type, date range) and pagination.
cancel_job
tool
Cancel a job that is in waiting or dispatched status.

Job discovery

list_job_types
tool
List all available job types with summaries, tags, and accepted media types.
get_job_schema
tool
Get the full JSON Schema for a job type’s parameters. Useful for validating inputs before submission.

Billing

get_credits
tool
Get the organization’s current credit balance in nanodollars and formatted credits.
get_usage
tool
Get usage summary for a date range including job counts, costs, and compute time.

Organization

get_org
tool
Get organization details including plan, limits, and feature flags.
list_members
tool
List organization members with their roles.

API keys

list_api_keys
tool
List all API keys for the organization (keys are masked).
create_api_key
tool
Create a new API key with an optional name. Returns the full key (shown only once).
revoke_api_key
tool
Revoke an existing API key by ID. The key immediately stops working.

Media

probe_media
tool
Probe a media file’s metadata (codecs, duration, resolution, bitrate). Maps to the extract.metadata job type.

FFmpeg

run_ffmpeg
tool
Execute a raw FFmpeg command with safety guardrails. The command is validated against 8 security layers before execution.
validate_ffmpeg
tool
Validate an FFmpeg command without executing it. Returns whether the command is allowed and what inputs/outputs were detected.