Press Monitor Keywords MCP Server
Onboarding Instructions
The Press Monitor Keywords MCP Server exposes keyword analytics as JSON-RPC tools for AI agents, SEO pipelines, and automation workflows.
MCP Base URL
https://mcp.pressmonitor.com/keywords/v1
Authentication
All MCP calls require Bearer token authentication:
Authorization: Bearer YOUR_API_KEY
MCP Configuration Example (mcp.json)
{ "mcpServers": { "keywords-search": { "command": "npx", "args": [ "-y", "mcp-remote", "https://mcp.pressmonitor.com/keywords/v1", "--header", "Authorization: Bearer ${KEYWORDS_API_TOKEN}" ], "env": { "KEYWORDS_API_TOKEN": "" } } } }
List Available Tools
curl -s -X POST "https://mcp.pressmonitor.com/keywords/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: Global Keywords
curl -s -X POST "https://mcp.pressmonitor.com/keywords/v1" -H "Content-Type: application/json" -H "Authorization: Bearer YOUR_API_KEY" -d '{ "jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": { "name": "keywordGlobal", "arguments": { "keyword": "AI" } } }'
Output Schema
Each tool response contains:
- data[] → keyword metrics: monthly search volumes, CPC, competition
- credits{} → billing info: rate, quantity, total, request_id
Support
- Docs: https://www.pressmonitor.com/en/docs/keywords-api
- Email: support@pressmonitor.com