Press Monitor Google MCP Server

Onboarding Instructions

The Press Monitor Google MCP Server exposes the same search tools as JSON-RPC endpoints for AI agents, automation workflows, and serverless integrations.


MCP Base URL

https://mcp.pressmonitor.com/google/v1


Authentication

All MCP calls require:

Authorization: Bearer YOUR_API_KEY


MCP Configuration Example (mcp.json)

{ "mcpServers": { "google-search": { "command": "npx", "args": [ "-y", "mcp-remote", "https://mcp.pressmonitor.com/google/v1", "--header", "Authorization: Bearer " ], "env": { "GOOGLE_API_TOKEN": "" } } } }


List Available Tools

curl -s -X POST "https://mcp.pressmonitor.com/google/v1" -H "Content-Type: application/json" -H "Authorization: Bearer YOUR_API_KEY" -d '{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}'


Invoke a Tool - Example: Web Search

curl -s -X POST "https://mcp.pressmonitor.com/google/v1" -H "Content-Type: application/json" -H "Authorization: Bearer YOUR_API_KEY" -d '{ "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "searchWeb", "arguments": { "query_text": "AI", "country_code": "US", "lang_code": "en", "count": 5 } } }'


Output Schema

Each tool response contains:


Support