chore: sync local changes to Gitea

This commit is contained in:
shumengya
2026-06-24 22:10:22 +08:00
parent df308e3ae6
commit 9e24d85cd0
13 changed files with 81 additions and 331 deletions

View File

@@ -86,11 +86,11 @@ const SEARCH_INPUT_SCHEMA = {
type: "array",
items: {
type: "string",
enum: ["google", "brave", "duckduckgo", "bing"],
enum: ["duckduckgo", "bing"],
},
description:
"Optional: Array of search engines to use. If not specified, uses default engines. " +
"Available engines: google, brave, duckduckgo, bing",
"Available engines: duckduckgo, bing",
},
},
required: ["query"],
@@ -106,7 +106,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
name: "web_search",
description:
"Search the web for current information, news, or any topic. " +
"Uses multiple engines (Brave, DuckDuckGo, Google, Bing) simultaneously " +
"Uses DuckDuckGo and Bing simultaneously " +
"and returns aggregated results with source URLs. " +
"Use this when you need real-time information not in your training data. ",
inputSchema: SEARCH_INPUT_SCHEMA,
@@ -114,7 +114,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
{
name: "search",
description:
"Search across multiple search engines (Google, Brave, DuckDuckGo, Bing) and return aggregated results. " +
"Search across DuckDuckGo and Bing and return aggregated results. " +
"This tool provides comprehensive search results from multiple sources, with source attribution for each result.",
inputSchema: SEARCH_INPUT_SCHEMA,
},