extract_structured_data
ActiveTool of io.github.meltingpixelsai/harvey-tools
declared in 1.0.0
Scrape a URL then use AI to extract structured JSON data matching your schema description. Combines Playwright scraping with Grok LLM extraction.
Parameters schema
{
"type": "object",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"url",
"schema_description"
],
"properties": {
"url": {
"type": "string",
"format": "uri",
"description": "URL to scrape"
},
"schema_description": {
"type": "string",
"description": "Description of the data to extract and desired JSON structure. Example: 'Extract all product names and prices as {products: [{name, price}]}'"
}
},
"additionalProperties": false
}Parent server
io.github.meltingpixelsai/harvey-tools
https://github.com/meltingpixelsai/harvey-tools
2/7 registries