Documentation navigation

Government Context MCP

gc_list_follows

List your follows

The authenticated user's own active follows: each followed View (type, id, title), its alert cadence, and when it was created. This never lists other users or follower counts.

Input

{
  "type": "object",
  "properties": {},
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Annotations

{
  "readOnlyHint": true,
  "idempotentHint": true,
  "openWorldHint": false
}

Examples

List your follows

The authenticated user's own follows with target titles and cadences.

{}
{
  "items": [
    {
      "target": {
        "type": "bill",
        "id": "119/hr/3076",
        "title": "AI Accountability Act"
      },
      "cadence": "daily",
      "created": "2026-07-16"
    },
    {
      "target": {
        "type": "topic",
        "id": "air-quality",
        "title": "Air Quality"
      },
      "cadence": "daily",
      "created": "2026-07-16"
    }
  ],
  "next_cursor": null
}