{
  "info": {
    "name": "Currents API — mcp.ai",
    "description": "REST API for the Currents API MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/currents_api",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "currents_api_activities_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/activities/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "activities",
            "list"
          ]
        },
        "description": "Tool to retrieve the latest news articles from Currents News API. Use when you need a real-time feed of recent articles.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"language\": \"\",\n  \"page_size\": 0,\n  \"page_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "currents_api_activities_watch",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/activities/watch",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "activities",
            "watch"
          ]
        },
        "description": "Start a push notification channel to watch user activities for Google Workspace applications. This action sets up a webhook to receive real-time notifications when activities occur in Google Workspace",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"channel\": {},\n  \"user_key\": \"\",\n  \"application_name\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "currents_api_entity_usage_reports_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/entity/usage/reports/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "entity",
            "usage",
            "reports",
            "get"
          ]
        },
        "description": "Tool to retrieve usage statistics for a specific Google Workspace entity. Use when you need to analyze entity usage on a particular date.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"date\": \"\",\n  \"filters\": \"\",\n  \"entityKey\": \"\",\n  \"pageToken\": \"\",\n  \"customerId\": \"\",\n  \"entityType\": \"\",\n  \"maxResults\": 0,\n  \"parameters\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "currents_api_user_usage_report_get",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/user/usage/report/get",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "user",
            "usage",
            "report",
            "get"
          ]
        },
        "description": "Retrieve news articles from Currents News API with flexible search and filtering. Use this tool to: - Search for news articles by keywords or phrases - Filter articles by language, category, country, ",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"country\": \"\",\n  \"category\": \"\",\n  \"end_date\": \"\",\n  \"keywords\": \"\",\n  \"language\": \"\",\n  \"page_size\": 0,\n  \"start_date\": \"\",\n  \"page_number\": 0\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "currents_api_users_list",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/users/list",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "users",
            "list"
          ]
        },
        "description": "Tool to list users in a Google Workspace domain. Note: - When the provided base_url points to Currents News API (api.currentsapi.services), this action will gracefully fall back to listing latest news",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"query\": \"\",\n  \"domain\": \"\",\n  \"orderBy\": \"\",\n  \"customer\": \"\",\n  \"viewType\": \"\",\n  \"pageToken\": \"\",\n  \"sortOrder\": \"\",\n  \"maxResults\": 0,\n  \"projection\": \"\",\n  \"showDeleted\": false,\n  \"customFieldMask\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}