MCP

Print Media MCP Server

Newspapers, magazines, trade publications, editorial output, press coverage, and print journalism.

MCP Version: 1.0.0 4 MCP Tools Authentication
Print Media

Base URL

https://mcp.pressmonitor.ca/mcp

Authentication

MCP calls also use Bearer tokens over JSON-RPC 2.0 requests.

Authorization: Bearer YOUR_TOKEN

headlines

Arguments

Name Type Required Description
keywords_text string Yes
lang_code string No
country_code string No
count integer No
cursor string No
sort string No Sort order (date or relevance)
date_from string No Start date for news (YYYY-MM-DD format)
date_to string No End date for news (YYYY-MM-DD format)

Code Examples

curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "headlines",
    "arguments": {
      "keywords_text": "VALUE"
    }
  },
  "id": 1
}'

briefs

Arguments

Name Type Required Description
keywords_text string Yes
lang_code string No
country_code string No
count integer No
cursor string No
sort string No Sort order (date or relevance)
date_from string No Start date for news (YYYY-MM-DD format)
date_to string No End date for news (YYYY-MM-DD format)

Code Examples

curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "briefs",
    "arguments": {
      "keywords_text": "VALUE"
    }
  },
  "id": 1
}'

fulltext

Arguments

Name Type Required Description
keywords_text string Yes
lang_code string No
country_code string No
count integer No
cursor string No
sort string No Sort order (date or relevance)
date_from string No Start date for news (YYYY-MM-DD format)
date_to string No End date for news (YYYY-MM-DD format)

Code Examples

curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "fulltext",
    "arguments": {
      "keywords_text": "VALUE"
    }
  },
  "id": 1
}'

clip

Arguments

Name Type Required Description
id string Yes Clip/article ID to resolve
ns string No Namespace prefix for multi-tenant index resolution
date string Yes Date of the clip (YYYY-MM-DD)
host string No Host name for tenant resolution
ttl integer No Signed URL time-to-live in seconds

Code Examples

curl -X POST "https://mcp.pressmonitor.ca/mcp" -H "Authorization: Bearer YOUR_API_KEY" -H "x-subscription-id: YOUR_SUB_ID" -H "Content-Type: application/json" -d '{
  "jsonrpc": "2.0",
  "method": "tools/call",
  "params": {
    "name": "clip",
    "arguments": {
      "id": "VALUE",
      "date": "VALUE"
    }
  },
  "id": 1
}'