Google Search via Serper API (serper.dev). Operations: search (web), news, images, shopping, places. Returns structured results with titles, URLs, snippets and rich data.
serpergooglesearchwebnews
Input Parameters
Parameter
Type
Description
operationrequired
string
Type of search to perform. One of: search, news, images, shopping, places.
apiKeyrequired
string
Serper API key from serper.dev.
queryrequired
string
Search query string.
numoptional
integer
Number of results (default: 10). Default: 10.
pageoptional
integer
Page number for pagination (default: 1). Default: 1.
countryoptional
string
Country code (e.g. us, gb, de). Default: us. Default: us.
languageoptional
string
Language code (e.g. en, es). Default: en. Default: en.
timeRangeoptional
string
Time filter: h=hour, d=day, w=week, m=month, y=year. One of: , h, d, w, m, y.
Discovery hint: Install with ppm install mcp-serper or invoke remotely via POST /v1/invoke/mcp-serper on the MCP Service.
PascalAI Usage
uses toolslib;
var Tool := LoadTool('mcp-serper');
var R := Tool.Call(JsonObj(['operation','search','apiKey','your-key','query','Pascal AI']));
Writeln(R.ToJSON);