graphlit-mcp-server

Official

webSearch

Performs web search based on search query. Format the search query as what would be entered into a Google search. Prefer calling this tool over using 'curl' directly for any web search. Does not ingest pages into Graphlit knowledge base. Accepts search query as string, and optional search service type. Can search for web pages, podcasts, videos, images, news, or shopping. Search service types: Tavily, Exa. Defaults to Tavily. Returns URL, title and relevant Markdown text from resulting web pages.

Input Schema

NameRequiredDescriptionDefault
searchYes
searchServiceNoTAVILY

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "search": { "type": "string" }, "searchService": { "default": "TAVILY", "enum": [ "EXA", "TAVILY" ], "type": "string" } }, "required": [ "search" ], "type": "object" }