news

Pack: serper · Endpoint: https://gateway.pipeworx.io/serper/mcp

Google News search via Serper: returns recent news articles (title, link, snippet, source, date) matching the query. Accepts query, result count (max 20), and optional country code (gl).

Parameters

NameTypeRequiredDescription
querystringyesSearch query, e.g. “federal reserve rate decision”
numnumbernoNumber of results (default 10, max 20)
glstringnoCountry code for geolocation, e.g. “us”, “gb”, “de”

Example call

Arguments

{
  "query": "federal reserve rate decision",
  "_apiKey": "your-serper-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/serper/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"news","arguments":{"query":"federal reserve rate decision","_apiKey":"your-serper-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('news', {
  "query": "federal reserve rate decision",
  "_apiKey": "your-serper-api-key"
});

More examples

{
  "query": "artificial intelligence regulation",
  "num": 20,
  "gl": "gb",
  "_apiKey": "your-serper-api-key"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "serper": {
      "url": "https://gateway.pipeworx.io/serper/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 2, 2026