- Skipped tests related to KB/DB search functionality due to temporary unavailability. - Updated test cases in chat_test.go, search_auth_integration_test.go, search_auto_full_test.go, and others to reflect this change. - Adjusted search handling in search.go to limit search types to "web" only until KB/DB search is re-enabled.
19 lines
573 B
JSON
19 lines
573 B
JSON
{
|
|
"name": "web_fetch",
|
|
"description": "Fetch a web page and return its content. Supports markdown and HTML output formats.",
|
|
"process": "tools.web_fetch",
|
|
"inputSchema": {
|
|
"type": "object",
|
|
"properties": {
|
|
"url": { "type": "string", "description": "URL to fetch" },
|
|
"format": {
|
|
"type": "string",
|
|
"description": "Output format: markdown or html (default markdown)",
|
|
"enum": ["markdown", "html"],
|
|
"default": "markdown"
|
|
}
|
|
},
|
|
"required": ["url"]
|
|
},
|
|
"x-process-args": ["$args.url", "$args.format"]
|
|
}
|