MCP Server Firecrawl
by Msparihar
scrape_url
Scrape content from a URL using Firecrawl API
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actions | No | Actions to perform | |
blockAds | No | Whether to block ads during scraping | |
formats | No | Output formats | |
jsonOptions | No | ||
url | Yes | URL to scrape |
Input Schema (JSON Schema)
{
"properties": {
"actions": {
"description": "Actions to perform",
"items": {
"type": "string"
},
"type": "array"
},
"blockAds": {
"description": "Whether to block ads during scraping",
"type": "boolean"
},
"formats": {
"description": "Output formats",
"items": {
"enum": [
"markdown"
],
"type": "string"
},
"type": "array"
},
"jsonOptions": {
"properties": {
"prompt": {
"description": "Prompt for extracting specific information",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
},
"url": {
"description": "URL to scrape",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}