Talandor
Public MCP report

Congressgov-mcp-server

https://congressgov.caseyjhand.com/mcp

Official Registry

Official Registry · io.github.cyanheads/congressgov-mcp-server · Publisher namespace: io.github.cyanheads

Server checked today at 21:07 UTC

Catalog verified today at 19:37 UTC

10 public tools observed. Tools were not executed.

Reachable · public catalog

What Talandor observed

The server answered

Add the endpoint to a compatible client below. A Watch can alert you if this public catalog changes.

This is a public protocol and tools/list check, not a functional validation.

https://congressgov.caseyjhand.com/mcp
AvailabilityReachablemeasured
Tools10 public tools observedmeasured
CompatibilityEstimated from published client rules · not a hands-on testestimated
Recent changecongressgov_bill_lookup changed its output schemaHistorical

Configure your assistant · Check details

How to use this MCP

Talandor checks the server; it does not connect the server to your assistant.

Choose your assistant, then copy the configuration shown for that client. Authentication is completed with the MCP provider, never inside Talandor.

    Open the official client guide (opens in a new tab)
    Compatibility evidence by assistant

    Compatibility is estimated from published configuration rules and is not a hands-on test in each client.

    Claude
    Observed 2026-07-28.
    Likely compatible · inferred
    Cursor
    Streamable HTTP and public HTTPS were observed.
    Likely compatible · inferred
    ChatGPT
    Public tool names, descriptions and schemas were observed. Plan and workspace access still apply.
    Likely compatible · inferred
    VS Code
    Public remote HTTP configuration can be assessed.
    Likely compatible · inferred
    Generic MCP
    Observed 2026-07-28.
    Likely compatible · inferred

    Rule evidence: Remote HTTPS rule v0.2 · reviewed 2026-09-12 · Remote HTTP rule v0.2 · reviewed 2026-09-12 · Remote app rule v0.2 · reviewed 2026-09-12 · Protocol and transport rule v0.2 · reviewed 2026-09-12

    Check details

    What changed

    Public contract stable since
    Last check · No semantic contract change since the previous complete snapshot.
    Info
    congressgov_bill_lookup changed its output schema
    Historical change · warning · medium confidence · congressgov_bill_lookup · Rule: output-schema-changed
    Warning
    congressgov_committee_reports changed its output schema
    Historical change · warning · medium confidence · congressgov_committee_reports · Rule: output-schema-changed
    Warning
    congressgov_daily_record changed its output schema
    Historical change · warning · medium confidence · congressgov_daily_record · Rule: output-schema-changed
    Warning

    A Watch would alert only if this change may affect uses of the selected client that depend on the changed tools.

    See earlier changes
    congressgov_bill_lookup added an optional input field versionCode
    Historical change · info · high confidence · congressgov_bill_lookup · Rule: optional-input-added
    Info
    congressgov_bill_summaries changed its title or description
    Historical change · info · high confidence · congressgov_bill_summaries · Rule: documentation-changed
    Info

    The notes above are for this connector.

    Server-provided content. Tool names, descriptions and schemas below are copied from the MCP server. They may be in another language. Talandor does not translate or verify them.
    Tools and declared exposure

    Server annotations are declarations, not verified behavior.

    Show 10 of 10 server-provided tool definitions
    congressgov_bill_lookup
    Declared read-only
    Show server-provided details
    Congress.gov Bill Lookup
    Server description (copied; language not verified)
    Browse and retrieve U.S. legislative bill data from Congress.gov. Discover bills by filtering on congress, bill type, and date range — there is no keyword search. Use 'list' to browse (requires congress, defaults to most-recently-updated first), 'get' for full bill detail (sponsor, policy area, CBO estimates, law info), or drill into a specific bill with 'actions', 'amendments', 'cosponsors', 'committees', 'subjects', 'summaries', 'text', 'titles', or 'related' (each requires congress + billType + billNumber). 'text' lists the published versions and their format URLs; 'content' then reads one version's actual text, a bounded character window at a time. 'summaries' takes an optional versionCode selector and returns each row's text a bounded character window at a time — a row past the window carries textTotalCharacters/textTruncated/textNextOffset, and characterOffset reads on from there.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "congress",
        "operation"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 250,
          "minimum": 1,
          "description": "Results per page (1-250)."
        },
        "order": {
          "enum": [
            "recent",
            "oldest"
          ],
          "type": "string",
          "default": "recent",
          "description": "Sort order for 'list' (sorts by update date). 'recent' (default) is newest first; 'oldest' is ascending. Ignored by other operations."
        },
        "format": {
          "enum": [
            "text",
            "xml"
          ],
          "type": "string",
          "default": "text",
          "description": "Document format for 'content'. 'text' is GPO's Formatted Text — plain, pre-formatted print output, published for every document checked. 'xml' prefers United States Legislative Markup and falls back to Formatted XML; it exists on some bill text versions and on no committee report or Congressional Record article. PDF is not retrieved — read one at the format URLs 'text'/'articles' return."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Pagination offset."
        },
        "billType": {
          "enum": [
            "hr",
            "s",
            "hjres",
            "sjres",
            "hconres",
            "sconres",
            "hres",
            "sres"
          ],
          "type": "string",
          "description": "Bill type code. Required for get and sub-resource operations."
        },
        "congress": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Congress number (e.g., 118, 119).",
          "exclusiveMinimum": 0
        },
        "operation": {
          "enum": [
            "list",
            "get",
            "actions",
            "amendments",
            "cosponsors",
            "committees",
            "subjects",
            "summaries",
            "text",
            "titles",
            "related",
            "content"
          ],
          "type": "string",
          "description": "Which data to retrieve."
        },
        "billNumber": {
          "anyOf": [
            {
              "type": "integer",
              "maximum": 9007199254740991,
              "description": "Positive integer form.",
              "exclusiveMinimum": 0
            },
            {
              "type": "string",
              "pattern": "^0*[1-9]\\d*$",
              "description": "Digit-string form, as list rows carry it."
            }
          ],
          "description": "Bill number. Required for get and sub-resource operations. Accepts the digit-string form list rows carry (e.g. \"9479\") as well as a number."
        },
        "toDateTime": {
          "type": "string",
          "description": "End of date range filter (ISO 8601). Same field semantics as fromDateTime."
        },
        "versionCode": {
          "type": "string",
          "description": "Which summary version 'summaries' returns — the versionCode a summary row carries ('00' introduced, '49' public law). Selection runs over the bill's whole summary list, which Congress.gov publishes no filter for, and limit/offset then page the matching rows. Omit to return every version. Ignored by other operations."
        },
        "fromDateTime": {
          "type": "string",
          "description": "Start of date range filter (ISO 8601). Filters by the bill's update date — when Congress.gov last touched the record — not by the bill's latest legislative action."
        },
        "characterLimit": {
          "type": "integer",
          "default": 25000,
          "maximum": 100000,
          "minimum": 1,
          "description": "Maximum characters to return (1-100000) — for the document window on 'content', and for each row's summary text on 'summaries'. Legislative documents run past a million characters and an enacted bill's summary past two hundred thousand, so either takes several windows."
        },
        "characterOffset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "First character to return, 0-based — of the document on 'content', and of every returned row's summary text on 'summaries'. Offsets are exact and are never snapped to a section or paragraph break, so feeding back the response's nextOffset (or a summary row's textNextOffset) walks the whole text with every character returned exactly once."
        },
        "textVersionIndex": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Which text version 'content' reads, 0-based against the same order 'text' returns — 0 is the most recent version. Ignored by other operations."
        }
      },
      "additionalProperties": false
    }
    congressgov_bill_summaries
    Declared read-only
    Show server-provided details
    Congress.gov Bill Summaries
    Server description (copied; language not verified)
    Browse recent CRS (Congressional Research Service) bill summaries — plain-language summaries of bills at each legislative stage, useful for answering "what's happening in Congress?". The fromDateTime/toDateTime filters apply to the summary's update time, not the bill's action date, so results include recently rewritten summaries of older bills. Defaults to summaries updated in the last 7 days. Each item shows both the bill's action date and the summary update date. A page stops adding rows once it reaches a fixed response-character budget, and a summary longer than the per-row window arrives as an exact character window carrying textTotalCharacters/textTruncated/textNextOffset; pagination.nextOffset continues the page and a row's textNextOffset continues its text. For summaries of one specific bill — and to read a windowed summary to the end — use congressgov_bill_lookup with operation='summaries' instead.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 250,
          "minimum": 1,
          "description": "Results per page (1-250)."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Pagination offset."
        },
        "billType": {
          "enum": [
            "hr",
            "s",
            "hjres",
            "sjres",
            "hconres",
            "sconres",
            "hres",
            "sres"
          ],
          "type": "string",
          "description": "Bill type filter. Requires 'congress'."
        },
        "congress": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Congress number. Optional — omit for summaries across all congresses.",
          "exclusiveMinimum": 0
        },
        "toDateTime": {
          "type": "string",
          "description": "End of date range (ISO 8601), filtered on the summary update time. Defaults to now."
        },
        "fromDateTime": {
          "type": "string",
          "description": "Start of date range (ISO 8601), filtered on the summary update time. Defaults to 7 days ago if neither date param is set."
        }
      },
      "additionalProperties": false
    }
    congressgov_committee_lookup
    Declared read-only
    Show server-provided details
    Congress.gov Committee Lookup
    Server description (copied; language not verified)
    Browse congressional committees and their legislation, reports, and nominations. Committee codes follow the pattern chamber-prefix (h/s/j) + abbreviation + 2-digit number — use 'list' (with optional 'filter' for name→code resolution) to discover codes, then 'get' or drill into 'bills', 'reports', or 'nominations' ('nominations' is Senate-only). 'get' and sub-resources only need committeeCode (chamber is inferred from the prefix); pass chamber explicitly to override. The 'bills' sub-resource defaults to 'recent' order (newest update-date first); pass order='oldest' for ascending update-date order. Upstream omits bill titles from the 'bills' sub-resource — rows carry only {congress, billType, billNumber, actionDate, relationshipType, url}; chain 'congressgov_bill_lookup get' per row to retrieve titles and policy area.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "operation"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 250,
          "minimum": 1,
          "description": "Results per page (1-250)."
        },
        "order": {
          "enum": [
            "recent",
            "oldest"
          ],
          "type": "string",
          "default": "recent",
          "description": "Sort order for the 'bills' sub-resource. 'recent' (default) returns newest update-date first; 'oldest' returns ascending update-date order. Ignored by other operations."
        },
        "filter": {
          "type": "string",
          "description": "Filter committee-list results by name (e.g., 'transportation', 'armed services'). Only meaningful for 'list'; fuzzy-matched rows are labeled approximate."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Pagination offset."
        },
        "chamber": {
          "enum": [
            "house",
            "senate",
            "joint"
          ],
          "type": "string",
          "description": "Chamber filter for 'list', or override for 'get' and sub-resources (otherwise inferred from committeeCode prefix)."
        },
        "congress": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Congress number.",
          "exclusiveMinimum": 0
        },
        "operation": {
          "enum": [
            "list",
            "get",
            "bills",
            "reports",
            "nominations"
          ],
          "type": "string",
          "description": "Which data to retrieve."
        },
        "committeeCode": {
          "type": "string",
          "pattern": "\\S",
          "description": "Committee system code, e.g. 'hsju00'. Required for 'get' and sub-resources. Codes are letters + a 2-digit suffix and are matched case-insensitively. Any other non-blank value is treated as a committee name and resolved automatically — single-word names ('Judiciary') included — or use operation:'list' with filter to browse."
        }
      },
      "additionalProperties": false
    }
    congressgov_committee_reports
    Declared read-only
    Show server-provided details
    Congress.gov Committee Reports
    Server description (copied; language not verified)
    Browse and retrieve committee reports from Congress.gov — reports accompany legislation reported out of committee and explain the bill's purpose, committee amendments, dissenting views, and the committee vote. Report types are 'hrpt' (House), 'srpt' (Senate), and 'erpt' (Executive). 'text' lists the published format URLs; 'content' then reads the report's actual text, a bounded character window at a time.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "congress",
        "operation"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 250,
          "minimum": 1,
          "description": "Results per page (1-250)."
        },
        "format": {
          "enum": [
            "text",
            "xml"
          ],
          "type": "string",
          "default": "text",
          "description": "Document format for 'content'. 'text' is GPO's Formatted Text — plain, pre-formatted print output, published for every document checked. 'xml' prefers United States Legislative Markup and falls back to Formatted XML; it exists on some bill text versions and on no committee report or Congressional Record article. PDF is not retrieved — read one at the format URLs 'text'/'articles' return."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Pagination offset."
        },
        "congress": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Congress number.",
          "exclusiveMinimum": 0
        },
        "operation": {
          "enum": [
            "list",
            "get",
            "text",
            "content"
          ],
          "type": "string",
          "description": "Which data to retrieve."
        },
        "reportType": {
          "enum": [
            "hrpt",
            "srpt",
            "erpt"
          ],
          "type": "string",
          "description": "Report type. Required for get, text, and content operations."
        },
        "reportNumber": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Committee report number. Required for get, text, and content operations.",
          "exclusiveMinimum": 0
        },
        "characterLimit": {
          "type": "integer",
          "default": 25000,
          "maximum": 100000,
          "minimum": 1,
          "description": "Maximum characters to return for 'content' (1-100000). Legislative documents run past a million characters, so a full bill takes several windows."
        },
        "characterOffset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "First character to return for 'content', 0-based. Offsets are exact and are never snapped to a section or paragraph break, so feeding the response's nextOffset back walks the whole document with every character returned exactly once."
        }
      },
      "additionalProperties": false
    }
    congressgov_crs_reports
    Declared read-only
    Show server-provided details
    Congress.gov CRS Reports
    Server description (copied; language not verified)
    Browse and retrieve CRS (Congressional Research Service) reports — nonpartisan policy analyses by subject-matter experts at the Library of Congress, covering policy areas, legislative proposals, and legal questions. Report IDs use letter-number codes (e.g., R40097, RL33612, IF12345). Use 'list' to browse available reports or 'get' for full detail (authors, topics, summary, download formats).
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "operation"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 250,
          "minimum": 1,
          "description": "Results per page (1-250)."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Pagination offset."
        },
        "operation": {
          "enum": [
            "list",
            "get"
          ],
          "type": "string",
          "description": "Which data to retrieve."
        },
        "reportNumber": {
          "type": "string",
          "description": "CRS report ID (e.g., 'R40097'). Required for 'get'."
        }
      },
      "additionalProperties": false
    }
    congressgov_daily_record
    Declared read-only
    Show server-provided details
    Congress.gov Daily Record
    Server description (copied; language not verified)
    Browse the daily Congressional Record — floor speeches, debates, and legislative text published each day Congress is in session. Navigation is hierarchical: volumes (via 'list') → issues (via 'issues') → articles (via 'articles'). Use 'list' to find recent volumes, 'issues' to see what's in a volume, and 'articles' to access individual speeches and debate sections. 'articles' lists each article and its format URLs; 'content' then reads one article's actual text, a bounded character window at a time.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "operation"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 250,
          "minimum": 1,
          "description": "Results per page (1-250)."
        },
        "format": {
          "enum": [
            "text",
            "xml"
          ],
          "type": "string",
          "default": "text",
          "description": "Document format for 'content'. 'text' is GPO's Formatted Text — plain, pre-formatted print output, published for every document checked. 'xml' prefers United States Legislative Markup and falls back to Formatted XML; it exists on some bill text versions and on no committee report or Congressional Record article. PDF is not retrieved — read one at the format URLs 'text'/'articles' return."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Pagination offset."
        },
        "operation": {
          "enum": [
            "list",
            "issues",
            "articles",
            "content"
          ],
          "type": "string",
          "description": "Which data to retrieve."
        },
        "issueNumber": {
          "anyOf": [
            {
              "type": "integer",
              "maximum": 9007199254740991,
              "description": "Positive integer form.",
              "exclusiveMinimum": 0
            },
            {
              "type": "string",
              "pattern": "^0*[1-9]\\d*$",
              "description": "Digit-string form, as list rows carry it."
            }
          ],
          "description": "Issue number within a volume. Required for 'articles' and 'content'. List rows carry this as a string (e.g. \"109\") — both forms are accepted."
        },
        "articleIndex": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Which article 'content' reads, 0-based against the issue's whole article sequence — the same absolute position 'articles' pages through with offset. Ignored by other operations."
        },
        "volumeNumber": {
          "anyOf": [
            {
              "type": "integer",
              "maximum": 9007199254740991,
              "description": "Positive integer form.",
              "exclusiveMinimum": 0
            },
            {
              "type": "string",
              "pattern": "^0*[1-9]\\d*$",
              "description": "Digit-string form, as list rows carry it."
            }
          ],
          "description": "Volume number. Required for 'issues', 'articles', and 'content'. Accepts a number or the digit-string form list rows carry."
        },
        "characterLimit": {
          "type": "integer",
          "default": 25000,
          "maximum": 100000,
          "minimum": 1,
          "description": "Maximum characters to return for 'content' (1-100000). Legislative documents run past a million characters, so a full bill takes several windows."
        },
        "characterOffset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "First character to return for 'content', 0-based. Offsets are exact and are never snapped to a section or paragraph break, so feeding the response's nextOffset back walks the whole document with every character returned exactly once."
        }
      },
      "additionalProperties": false
    }
    congressgov_enacted_laws
    Declared read-only
    Show server-provided details
    Congress.gov Enacted Laws
    Server description (copied; language not verified)
    Browse enacted public and private laws from Congress.gov by congress and law type ('pub' for public laws, 'priv' for private). 'list' filters by enactment status and law type — the discovery path 'bill_lookup' does not offer. 'get' returns the origin bill record (sponsor, actions, summaries, text), with the public/private law citation on the bill's 'laws' array (e.g. {"number":"118-2","type":"Public Law"}).
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "congress",
        "operation"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 250,
          "minimum": 1,
          "description": "Results per page (1-250)."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Pagination offset."
        },
        "lawType": {
          "enum": [
            "pub",
            "priv"
          ],
          "type": "string",
          "description": "Law type — 'pub' (public laws, general application, most common) or 'priv' (private laws, specific individuals or entities). Required for 'get'."
        },
        "congress": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Congress number.",
          "exclusiveMinimum": 0
        },
        "lawNumber": {
          "anyOf": [
            {
              "type": "integer",
              "maximum": 9007199254740991,
              "description": "Positive integer form (e.g. 90).",
              "exclusiveMinimum": 0
            },
            {
              "type": "string",
              "pattern": "^(?:\\d+-)?0*[1-9]\\d*$",
              "description": "String form — the law number (\"90\") or the full citation (\"118-90\")."
            }
          ],
          "description": "Law number, as carried by a 'list' row's `laws[].number` — either the full citation ('118-90', rendered as 'Public Law 118-90') or the portion after the hyphen ('90'); the prefix is the congress and must match `congress`. Not the row's own `number`, which is the origin bill. Required for 'get'."
        },
        "operation": {
          "enum": [
            "list",
            "get"
          ],
          "type": "string",
          "description": "Which data to retrieve."
        }
      },
      "additionalProperties": false
    }
    congressgov_member_lookup
    Declared read-only
    Show server-provided details
    Congress.gov Member Lookup
    Server description (copied; language not verified)
    Discover congressional members and their legislative activity. No name search. For 'list', filter by stateCode (optionally with district), by congress, or by both together (e.g., 118th Congress + CA, or CA district 12 in the 118th). Add currentMember=true to restrict to currently serving members. Once you have a bioguideId, use 'get' for full profile or 'sponsored'/'cosponsored' for their legislative portfolio.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "operation"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 250,
          "minimum": 1,
          "description": "Results per page (1-250)."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Pagination offset."
        },
        "congress": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Congress number to filter by.",
          "exclusiveMinimum": 0
        },
        "district": {
          "type": "integer",
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Congressional district number. Requires stateCode. Use 0 for at-large."
        },
        "operation": {
          "enum": [
            "list",
            "get",
            "sponsored",
            "cosponsored"
          ],
          "type": "string",
          "description": "Which data to retrieve."
        },
        "stateCode": {
          "type": "string",
          "pattern": "^[A-Za-z]{2}$",
          "description": "Two-letter state code (e.g., 'CA', 'TX')."
        },
        "bioguideId": {
          "type": "string",
          "pattern": "^[A-Za-z]\\d{6}$",
          "description": "Unique member identifier (e.g., 'P000197'). Required for get/sponsored/cosponsored."
        },
        "currentMember": {
          "type": "boolean",
          "description": "Filter to currently serving members. Omit to include both current and former members."
        }
      },
      "additionalProperties": false
    }
    congressgov_roll_votes
    Declared read-only
    Show server-provided details
    Congress.gov Roll Votes
    Server description (copied; language not verified)
    Retrieve U.S. congressional roll call votes and individual member voting positions for either chamber. Set 'chamber' to 'house' (default, from the Congress.gov API) or 'senate' (from the Senate's official LIS feed). Use 'list' to find votes by congress and session (newest first by default), 'get' for vote details (question, result, tallies, party breakdown, associated bill/nomination/amendment), or 'members' for how each member voted.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "congress",
        "operation",
        "session"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 250,
          "minimum": 1,
          "description": "Results per page (1-250)."
        },
        "order": {
          "enum": [
            "recent",
            "oldest"
          ],
          "type": "string",
          "default": "recent",
          "description": "Sort order for 'list'. 'recent' (default) returns newest first; 'oldest' returns ascending. House sorts by vote update date (with 'recent', offset=0 always returns the strictly newest page); Senate sorts by roll call number. Ignored by 'get' and 'members'."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Pagination offset."
        },
        "chamber": {
          "enum": [
            "house",
            "senate"
          ],
          "type": "string",
          "default": "house",
          "description": "Chamber whose votes to query. 'house' (default) draws from the Congress.gov API; 'senate' draws from the Senate's official LIS roll-call feed. Roll call numbers reset each session and are specific to one chamber."
        },
        "session": {
          "type": "integer",
          "maximum": 2,
          "minimum": 1,
          "description": "Session number (1 or 2). Odd years are session 1, even years session 2."
        },
        "congress": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Congress number.",
          "exclusiveMinimum": 0
        },
        "operation": {
          "enum": [
            "list",
            "get",
            "members"
          ],
          "type": "string",
          "description": "Which data to retrieve."
        },
        "voteNumber": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Roll call vote number. Required for 'get' and 'members'.",
          "exclusiveMinimum": 0
        }
      },
      "additionalProperties": false
    }
    congressgov_senate_nominations
    Declared read-only
    Show server-provided details
    Congress.gov Senate Nominations
    Server description (copied; language not verified)
    Browse presidential nominations to federal positions and track the Senate confirmation process. Use 'list' to browse, 'get' for nomination detail, 'actions'/'committees'/'hearings' for confirmation pipeline data, or 'nominees' to retrieve individual appointees in a multi-nominee batch. Nominations use 'PN' (Presidential Nomination) numbering. Most nominations carry confirmation activity on the parent (e.g., PN1000); multi-part parents (e.g., PN851) carry no activity of their own — their actions, committees, hearings, and nominees live on partitioned children (PN851-1, PN851-2, …). 'get' on a parent that has no `nominees` array signals the partitioned form is needed for everything below it.
    Input schema (server-provided preview — do not copy)
    {
      "type": "object",
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "required": [
        "congress",
        "operation"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 20,
          "maximum": 250,
          "minimum": 1,
          "description": "Results per page (1-250)."
        },
        "offset": {
          "type": "integer",
          "default": 0,
          "maximum": 9007199254740991,
          "minimum": 0,
          "description": "Pagination offset."
        },
        "ordinal": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Batch ordinal within a multi-nominee nomination. Each ordinal addresses a group of nominees; the 'nominees' operation returns every individual in that batch. Use 'get' first to see available ordinals on the nomination's `nominees` array (multi-part parents have no nominees array — use a partitioned form like '851-1' instead).",
          "exclusiveMinimum": 0
        },
        "congress": {
          "type": "integer",
          "maximum": 9007199254740991,
          "description": "Congress number.",
          "exclusiveMinimum": 0
        },
        "operation": {
          "enum": [
            "list",
            "get",
            "nominees",
            "actions",
            "committees",
            "hearings"
          ],
          "type": "string",
          "description": "Which data to retrieve."
        },
        "nominationNumber": {
          "type": "string",
          "description": "Nomination number. Use the bare form (e.g. '1000') for nominations whose activity sits on the parent; use the partitioned form (e.g. '851-1') for sub-resources of a multi-part nomination. Required for detail operations."
        }
      },
      "additionalProperties": false
    }
    Evidence and limitations

    Method: anonymous Streamable HTTP probe. We never invoke a tool.

    Attempted protocols: 2026-07-28

    Protocol2026-07-28
    TransportStreamable HTTP
    AuthNo authentication challenge observed
    EvidencePublic contract observed
    Total latency1118 ms
    Response bytes55983

    No diagnostic errors.

    Observation history
    Operational
    · stable since
    2026-07-28 · 10 tools · no change · 3 checks
    Operational
    · stable since
    2026-07-28 · 10 tools · no change · 50 checks
    Complete public contract · 2026-07-28 · 10 tools
    25e705e2c16c
    Complete public contract · 2026-07-28 · 10 tools
    09dee06e20fe

    Deep monitoring eligibility

    Eligible for deep monitoring

    A complete public tools/list contract was observed, so a future deep-monitoring baseline can be compared safely.

    Personal Watch is not open yet. This report does not start a Watch or a payment.

    See public monitoring

    Automatic monitoring later

    Saving this connector does not start a Watch. Watch is a future offer; subscriptions and alerts are not available yet.

    Full Watch. Availability, protocol, auth and public tool contract changes can be compared.