MCP docs › Tools › Facebook Downloader
Facebook Downloader
facebook_download fast Video, audio & downloads
Get downloadable media URLs and metadata for a Facebook video.
When to use. Getting the media URL for a public Facebook video.
Not for. Private/friends-only videos.
Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
url |
string | yes | — | Facebook video URL. |
Returns
Media URLs plus video metadata.
Each row typically carries: title author thumbnail download_url media_type ext
The response body is { status, count, fields, results }. Runs that exceed the inline wait return { status: "running", job_id, tool_flow } instead — see Jobs & errors.
Call it over MCP
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "facebook_download",
"arguments": {
"url": "https://www.facebook.com/watch/?v=1234567890"
}
}
}
Call it over the REST API
curl -X POST https://convertfleet.online/api/tool-run \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"tool":"dl_fb","params":{"url":"https://www.facebook.com/watch/?v=1234567890"}}'
Both paths run the same job engine, enforce the same plan limits and count against the same monthly quota. See the REST API page.
Related tools
JSON Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "Facebook video URL."
}
},
"additionalProperties": false,
"required": [
"url"
]
}