Media
Understand which media operations are discoverable through MCP and how to handle multipart uploads.
A
JMedia resources cover uploaded images and files used by companies, blog posts, and job board presentation. The MCP sandbox has no filesystem, so multipart file uploads are not available through execute today.
Discover media metadata operations
123async () => Object.keys(spec.paths).filter((path) =>path.startsWith('/media') || path.includes('/logo'))
Choose the right surface
Use MCP for JSON-based discovery and metadata operations that appear in the live specification. When a request must read a local file and send multipart data, use the Cavuno CLI, dashboard, or direct multipart REST API. The REST endpoints are POST /v1/media/upload for supported media purposes and POST /v1/companies/{id}/logo for a company logo. An agent can still prepare filenames, alt text, associations, and a verification checklist before handing off the upload.
Never place raw binary data or secrets inside an MCP prompt. After an upload, retrieve the affected company or blog post and confirm that its public media URL resolves.