extract_structured_content
Extract structured data from web pages using CSS selectors to efficiently gather specific content for analysis or integration into LLM workflows.
Instructions
Extracts structured content from a web page using CSS selectors
Input Schema
Name | Required | Description | Default |
---|---|---|---|
selectors | Yes | CSS selectors to extract content | |
url | Yes | URL to extract content from |
Input Schema (JSON Schema)
{
"properties": {
"selectors": {
"additionalProperties": {
"type": "string"
},
"description": "CSS selectors to extract content",
"type": "object"
},
"url": {
"description": "URL to extract content from",
"type": "string"
}
},
"required": [
"url",
"selectors"
],
"type": "object"
}