Search MCP Server

MIT License
52
  • Linux

search

执行网页搜索,从全网搜索任何网页信息和网页链接。结果准确、摘要完整,更适合AI使用。支持以下特性:

  • 时间范围过滤
  • 显示详细摘要
  • 分页获取 每次请求最多返回10个结果。(当前使用博查搜索API实现)

Input Schema

NameRequiredDescriptionDefault
countNo结果数量(1-10,默认10)
freshnessNo时间范围(noLimit:不限, oneDay:一天内, oneWeek:一周内, oneMonth:一月内, oneYear:一年内)noLimit
pageNo页码,从1开始
queryYes搜索查询内容
summaryNo是否显示详细摘要

Input Schema (JSON Schema)

{ "properties": { "count": { "default": 10, "description": "结果数量(1-10,默认10)", "type": "number" }, "freshness": { "default": "noLimit", "description": "时间范围(noLimit:不限, oneDay:一天内, oneWeek:一周内, oneMonth:一月内, oneYear:一年内)", "enum": [ "noLimit", "oneDay", "oneWeek", "oneMonth", "oneYear" ], "type": "string" }, "page": { "default": 1, "description": "页码,从1开始", "type": "number" }, "query": { "description": "搜索查询内容", "type": "string" }, "summary": { "default": false, "description": "是否显示详细摘要", "type": "boolean" } }, "required": [ "query" ], "type": "object" }

Other Tools