inputSchema
{
"type": "object",
"required": [
"seedUrl"
],
"properties": {
"seedUrl": {
"type": "string",
"description": "HTTP(S) page URL to fetch (first page only; pagination not followed)."
}
}
}
outputSchema
{
"type": "object",
"required": [
"site",
"items"
],
"properties": {
"site": {
"type": "string",
"description": "Detected site key: shanghai_xzfgzwj | pbc_tiaofasi | npc_flk | generic"
},
"error": {
"type": "string",
"description": "Set when fetch or parse failed"
},
"items": {
"type": "array",
"items": {
"type": "object",
"required": [
"url",
"title"
],
"properties": {
"url": {
"type": "string"
},
"title": {
"type": "string"
}
}
}
}
}
}