Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MODULES | No | Selective loading — comma-separated list of modules to load (e.g., 'fred,treasury,congress'). Omit to load all. | |
| MCP_HOST | No | Host binding for HTTP Stream transport (default: 127.0.0.1). Set to 0.0.0.0 for Docker/remote access. | |
| MCP_PORT | No | Port for HTTP Stream transport (default: 8080). | |
| AQS_EMAIL | No | EPA AQS — email address registered with AQS API (required alongside AQS_API_KEY). | |
| AQS_API_KEY | No | EPA Air Quality System — ambient air monitoring data. Get key: https://aqs.epa.gov/data/api/signup | |
| BEA_API_KEY | No | Bureau of Economic Analysis — state GDP, GDP by industry, personal income. Get key: https://apps.bea.gov/API/signup/ | |
| BLS_API_KEY | No | Bureau of Labor Statistics — employment, wages, CPI. Optional (works without at lower limits). Get key: https://www.bls.gov/developers/home.htm | |
| DOL_API_KEY | No | Department of Labor — OSHA inspections, WHD enforcement, UI claims. Get key: https://data.dol.gov/registration | |
| EIA_API_KEY | No | Energy Information Administration — petroleum, electricity, natural gas prices. Get key: https://www.eia.gov/opendata/register.php | |
| FRED_API_KEY | No | FRED (Federal Reserve Economic Data) — 800K+ time series. Get key: https://fredaccount.stlouisfed.org/apikeys | |
| NOAA_API_KEY | No | NOAA Climate Data — weather observations, temperature, precipitation. Get key: https://www.ncei.noaa.gov/cdo-web/token | |
| MCP_TRANSPORT | No | Transport type: 'stdio' (default) or 'httpStream'. | |
| USPTO_API_KEY | No | USPTO Open Data Portal — patent applications, PTAB trials. Get key: https://data.uspto.gov/apis/getting-started | |
| CENSUS_API_KEY | No | Census Bureau — population, demographics, income, housing. Get key: https://api.census.gov/data/key_signup.html | |
| HUD_USER_TOKEN | No | HUD — Fair Market Rents, Income Limits. Get token: https://www.huduser.gov/hudapi/public/register | |
| DATA_GOV_API_KEY | No | Shared Data.gov key — works for Congress, FEC, FBI, GovInfo, College Scorecard, NREL, Regulations.gov, USDA FoodData, and FDA. Get one free at https://api.data.gov/signup/ | |
| SEC_CONTACT_EMAIL | No | SEC EDGAR — contact email for User-Agent header (required by SEC fair access policy). Any valid email. | |
| USDA_NASS_API_KEY | No | USDA NASS — crop production, livestock, farm prices. Get key: https://quickstats.nass.usda.gov/api |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {} |
| logging | {} |
| prompts | {} |
| resources | {} |
| completions | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| bea_gdp_national | Get U.S. national GDP data from the NIPA tables. Shows GDP, GDP growth, components (consumption, investment, government, net exports), and deflators. Common table names:
|
| bea_gdp_by_state | Get gross domestic product for U.S. states from BEA Regional dataset. Table options:
GeoFips: 'STATE' for all states, or 5-digit FIPS (e.g. '06000' for CA) |
| bea_personal_income | Get personal income data by state from BEA Regional dataset. Table options:
LineCode for SAINC1: 1=personal income, 2=population, 3=per capita income (default) LineCode for SAINC4: 1=total, 50=wages, 45=dividends/interest/rent, 47=transfer receipts |
| bea_gdp_by_industry | Get GDP contribution by industry sector nationally from BEA GDPbyIndustry dataset. TableID options:
Industry='ALL' returns all sectors. |
| bea_dataset_info | Discover BEA datasets, parameters, and valid parameter values. Essential for exploring the BEA API before making data requests. Actions:
Datasets: NIPA, NIUnderlyingDetail, FixedAssets, MNE, GDPbyIndustry, Regional, ITA, IIP, InputOutput, UnderlyingGDPbyIndustry, IntlServTrade |
| bea_nipa_underlying_detail | Get NIPA underlying detail data — more granular national account breakdowns. BEA caution: these detailed estimates are lower quality than published aggregates. Common tables: U20305 (PCE current $), U70205S (auto sales/production monthly), U001A (GDP), U20304 (PCE by type). Use bea_dataset_info to discover all tables. |
| bea_fixed_assets | Get Fixed Assets data — net stock, depreciation, and investment tables. Covers private/government fixed assets, equipment, structures, and IP products. Annual data only, updated once per year (late August – early October). Common tables: FAAt101 (current-cost net stock by type), FAAt201 (private equipment), FAAt401 (private nonresidential by industry), FAAt801 (current-cost depreciation). Use bea_dataset_info to discover all table names. |
| bea_international_transactions | Get U.S. international transactions (balance of payments) data. Tracks all transactions between U.S. and foreign residents: goods/services trade, current account, financial account, capital transfers. Indicator examples:
Frequency: A=annual, QSA=quarterly seasonally adjusted, QNSA=not adjusted |
| bea_international_investment | Get U.S. international investment position (IIP) data. Shows end-of-period accumulated stocks of U.S. financial assets and liabilities. TypeOfInvestment examples:
Component: 'Pos' (position), 'ChgPosTrans' (change from transactions), 'ChgPosPrice' (from price changes), 'ChgPosXRate' (from exchange rates) |
| bea_intl_services_trade | Get U.S. international trade in services data (annual). IMPORTANT: BEA requires either a specific TypeOfService or a specific AreaOrCountry. You cannot use 'All' for both simultaneously. TypeOfService: 'All' (default), or specific: 'Telecom', 'Travel', 'Transport', 'Insurance', 'Financial', 'Comp', 'ChargesForTheUseOfIpNie', etc. Use bea_dataset_info to discover all values. TradeDirection: 'All' (default), 'Exports', 'Imports', 'Balance', 'SupplementalIns' Affiliation: 'All' (default), 'AllAffiliations', 'Affiliated', 'Unaffiliated', 'UsParents', 'UsAffiliates' |
| bea_multinational_enterprises | Get data on Direct Investment (DI) and Activities of Multinational Enterprises (AMNE). DirectionOfInvestment (required):
Classification (required): 'Country', 'Industry', 'CountryByIndustry' For AMNE stats, also set ownership_level ('0'=majority-owned, '1'=all) and non_bank_affiliates_only ('0'=both, '1'=nonbank only). |
| bea_input_output | Get Input-Output statistics — Make Tables, Use Tables, and Requirements tables. Shows interrelationships between U.S. producers and users. Use bea_dataset_info (action='get_values', dataset_name='InputOutput', parameter_name='TableID') to discover available table IDs. |
| bea_underlying_gdp_by_industry | Get Underlying GDP by Industry — more industry detail than the main GDPbyIndustry dataset. Annual data only, starting from 1997. BEA caution: quality of these detailed estimates is lower than published aggregates. Use bea_dataset_info to discover valid TableIDs and Industry codes. |
| bls_series_data | Fetch time series data from the Bureau of Labor Statistics. Returns monthly/quarterly/annual observations for employment, wages, prices, and more. Popular series IDs:
Series ID prefixes: CES (jobs by industry), LNS (unemployment), CU (CPI), WP (PPI), OE (wages), JT (JOLTS) |
| bls_search_series | Look up popular BLS series IDs by topic. BLS doesn't have a search API, so this provides curated series IDs for common topics. Topics: employment, unemployment, wages, cpi, cpi_components, ppi, productivity, jolts, state_employment |
| bls_cpi_breakdown | Get a breakdown of Consumer Price Index by component — food, shelter, energy, medical care, transportation, etc. Shows which categories are driving inflation. |
| bls_employment_by_industry | Get employment numbers broken down by major industry sector. Shows which sectors are growing or shrinking. |
| bts_transport_stats | Get Monthly Transportation Statistics — 50+ national indicators including: • Airline passenger traffic and on-time performance % • Transit ridership, highway vehicle miles • Rail freight, Amtrak ridership and on-time % • Truck tonnage, fuel prices, vehicle sales • Transportation Services Index (freight, passenger, combined) • Border crossing summaries (trucks, persons) • Safety fatalities (air, rail) Monthly data going back to 1947 for some series. |
| bts_border_crossings | Get border crossing data at U.S. ports of entry: trucks, personal vehicles, pedestrians, train passengers, containers. Covers U.S.-Mexico and U.S.-Canada borders. Monthly data by port, state, and measure type. |
| cdc_causes_of_death | Get leading causes of death in the U.S. by state and year. Data from 1999–2017. Causes include heart disease, cancer, kidney disease, etc. |
| cdc_life_expectancy | Get U.S. life expectancy at birth by race and sex (1900–2018). Races: 'All Races', 'Black', 'White'. Sex: 'Both Sexes', 'Male', 'Female'. Note: Data goes through 2018. For more recent mortality trends, use cdc_mortality_rates. |
| cdc_mortality_rates | Get provisional age-adjusted death rates by cause, sex, and state (quarterly, 2020–present). Causes: 'All causes', 'Heart disease', 'Cancer', 'COVID-19', 'Drug overdose', 'Suicide', etc. Returns rate_overall, rate_sex_female, rate_sex_male, and per-state rates. |
| cdc_places_health | Get county-level health indicators from CDC PLACES (BRFSS-based estimates). Measures: OBESITY, DIABETES, CSMOKING (smoking), BINGE (binge drinking), BPHIGH (high BP), DEPRESSION, SLEEP (short sleep), CHD (heart disease), COPD, CANCER, STROKE, ARTHRITIS, CASTHMA (asthma), MHLTH (mental distress), PHLTH (physical distress), LPA (physical inactivity), ACCESS2 (no health insurance), DENTAL, CHECKUP, KIDNEY, HIGHCHOL, TEETHLOST, FOODINSECU (food insecurity), LONELINESS, HOUSINSECU (housing insecurity) Returns crude prevalence (%) by county. |
| cdc_places_city | Get city-level health indicators from CDC PLACES — obesity, diabetes, smoking, depression, sleep, blood pressure, mental health, and 30+ more measures for every U.S. city with population > 50,000. Each row contains ALL measures for a city as separate columns (e.g. obesity_crudeprev, diabetes_crudeprev). |
| cdc_weekly_deaths | Get weekly provisional death counts by state — COVID-19, pneumonia, influenza, and total deaths. THIS IS THE MOST CURRENT CDC MORTALITY DATA — updated weekly, covers 2020–present. Includes percent_of_expected_deaths to detect excess mortality. |
| cdc_disability | Get disability prevalence by state and type from BRFSS survey. Types: 'Any Disability', 'Mobility Disability', 'Cognitive Disability', 'Hearing Disability', 'Vision Disability', 'Self-care Disability', 'Independent Living Disability', 'No Disability' |
| cdc_drug_overdose | Get drug poisoning/overdose mortality by state (1999–2016).\nIncludes death rates by state, sex, race, and age group. Critical for opioid crisis analysis. |
| cdc_nutrition_obesity | Get adult obesity, physical inactivity, and fruit/vegetable consumption by state from BRFSS.\nTopics: 'Obesity', 'Physical Activity', 'Fruits and Vegetables'. Data by state, race, age, income, education. |
| cdc_death_rates_historical | Get age-adjusted death rates for major causes since 1900.\nCauses: 'Heart Disease', 'Cancer', 'Stroke', 'Unintentional injuries', 'CLRD' (chronic lower respiratory diseases).\nGreat for long-term trend analysis — 120+ years of data. |
| cdc_birth_indicators | Get quarterly provisional birth indicators: fertility rates, teen birth rates, \npreterm birth rates, cesarean delivery rates, low birthweight — by race/ethnicity.\nTopics: 'General Fertility', 'Teen Birth', 'Preterm', 'Cesarean', 'Low Birthweight', 'NICU', 'Medicaid' |
| cdc_covid | Get COVID-19 weekly case and death counts by state (data through early 2023). States use two-letter abbreviations: 'NY', 'CA', 'TX'. |
| cdc_query | Custom query against any CDC dataset using SODA syntax. Datasets: bi63-dtpu (death 1999–2017), w9j2-ggv5 (life expectancy), 489q-934x (mortality rates), swc5-untb (PLACES county), dxpw-cm5u (PLACES city), pwn4-m3yp (COVID), r8kw-7aab (weekly deaths), s2qv-b27b (disability), xbxb-epbu (drug overdose), hn4x-zwk7 (nutrition/obesity), 6rkc-nb2q (historical death rates), 76vv-a7x8 (birth indicators) |
| census_query | Query the U.S. Census Bureau Data API. Supports ACS, Decennial Census, Population Estimates, Economic Census, and more. Returns data for specified variables and geography. Common datasets: '2023/acs/acs1' (1yr), '2023/acs/acs5' (5yr), '2020/dec/pl' (Decennial), '2023/pep/population' Common variables: NAME, B01001_001E (population), B19013_001E (median income), B25077_001E (home value), B01002_001E (median age) |
| census_population | Get population data for U.S. states using the American Community Survey. Quick shortcut — for more flexibility use census_query directly. |
| census_search_variables | Search for Census variable names/codes by keyword. Helps discover what data is available in a given dataset. Returns variable IDs you can use with census_query. |
| cfpb_search_complaints | Search the CFPB consumer complaint database (13M+ records). Find complaints by company, product, state, issue, date, or keyword. Returns individual complaints with company responses. Company names auto-retry with fuzzy search if exact match fails (e.g. 'Wells Fargo' will find 'WELLS FARGO & COMPANY'). Products: 'Mortgage', 'Debt collection', 'Credit card or prepaid card', 'Checking or savings account', 'Student loan', 'Vehicle loan or lease', 'Credit reporting, credit repair services, or other personal consumer reports'. |
| cfpb_complaint_aggregations | Get complaint counts grouped by a field (product, company, state, issue, etc.). Useful for ranking companies by complaint volume, identifying top issues, or comparing states. Aggregation fields: 'product', 'company', 'state', 'issue', 'company_response', 'timely', 'submitted_via', 'tags'. |
| cfpb_complaint_trends | Get complaint trends over time using the CFPB Trends API. Uses dedicated /trends endpoint with lens-based aggregation. REQUIRED: trend_interval ('month', 'quarter', or 'year') — the API rejects requests without it. Lens options: 'overview' (total counts), 'product' (by product), 'issue' (by issue), 'tags' (by tag). Sub-lens allows drilling into sub-categories within the lens. |
| cfpb_complaint_detail | Get full details for a specific complaint by its Complaint ID. Returns all fields: product, issue, company, narrative (if consented), response, dates, etc. |
| cfpb_state_complaints | Get complaint information broken down by state (geographic view). Returns complaint counts and data for each state. Useful for maps and state comparisons. Applies the same filters as search (product, company, date, etc.). |
| cfpb_suggest_company | Autocomplete/suggest company names from the CFPB complaint database. Useful for finding the exact company name before searching complaints. |
| clinical_trials_search | Search ClinicalTrials.gov for clinical trials by condition, drug/intervention, sponsor, status, and phase. Returns trial ID, title, status, phase, sponsor, conditions, and enrollment. Use sponsor filter to track pharma company research (e.g. 'Pfizer', 'Moderna', 'NIH'). |
| clinical_trials_detail | Get full details for a specific clinical trial by NCT ID. Returns protocol, eligibility criteria, arms/interventions, locations, and contacts. |
| clinical_trials_stats | Get trial count breakdown by status for a condition or drug/intervention. Shows how many trials are recruiting, active, completed, or terminated. Works for diseases ('breast cancer') AND drug names ('semaglutide', 'pembrolizumab'). |
| cms_search | Search for CMS provider data datasets by keyword. Returns dataset IDs, titles, and descriptions. Use the ID with cms_query to fetch data. |
| cms_hospitals | Query CMS hospital data: general info, quality ratings, mortality, readmissions, infections, patient surveys, Medicare spending. Filter by state or city. |
| cms_nursing_homes | Query CMS nursing home data: provider info with five-star ratings, quality measures, health deficiencies/citations. Filter by state. |
| cms_query | General-purpose query against any CMS provider dataset by dataset identifier. Use cms_search to find available datasets and their IDs. Supports filtering by any field. |
| scorecard_search | Search U.S. colleges and universities from the College Scorecard. Returns tuition, admission rate, graduation rate, median earnings after graduation, student debt. Search by name, state, or school type. Sort by cost, earnings, or graduation rate. |
| scorecard_compare | Compare specific colleges side-by-side on cost, graduation rate, earnings, and debt. Provide school names to search and compare. |
| scorecard_top | Get top-ranked colleges by earnings, graduation rate, or lowest cost. Rankings: 'earnings' (highest median pay 10yr after entry), 'graduation' (highest completion rate), 'expensive' (highest tuition) |
| scorecard_query | Advanced College Scorecard query with custom field filters and ranges. Filter examples:
|
| congress_search_bills | Search for bills in Congress by keyword, congress number, or bill type. Returns bill number, title, sponsor, latest action, and status. Congress numbers: 118th (2023-2024), 119th (2025-2026), 117th (2021-2022). Bill types: hr (House), s (Senate), hjres, sjres, hconres, sconres, hres, sres |
| congress_bill_details | Get detailed information about a specific bill including sponsors, cosponsors with party breakdown, actions, committees, and current status. |
| congress_search_members | Search for members of Congress by state, congress number, district, or get all current members. Supports: /member (all), /member/{stateCode} (by state), /member/{stateCode}/{district} (by district), /member/congress/{congress} (by congress), /member/congress/{congress}/{stateCode}/{district} (combined). |
| congress_house_votes | Get House of Representatives roll call vote results with member-level party breakdown. Primary source: Congress.gov API (118th-119th Congress); falls back to clerk.house.gov XML for older congresses. Coverage: 1990 to present. Use year param for historical votes. Cross-reference with: congress_senate_votes (same bill's Senate vote), FEC (congress_member donors via fec_candidate_financials), lobbying_search (who lobbied on the bill), FRED (economic impact 1-3 years after passage). For Senate votes, use congress_senate_votes. |
| congress_senate_votes | Get Senate roll call vote results from senate.gov XML. Shows how senators voted by party on specific legislation, nominations, and procedural motions. Coverage: 101st Congress (1989) to present. Cross-reference with: congress_house_votes (same bill's House vote), FEC (senator donors via fec_candidate_financials), lobbying_search (who lobbied on the bill), congress_member_bills (senator's voting vs sponsoring patterns). For House votes, use congress_house_votes. |
| congress_recent_laws | Get recently enacted laws (bills signed by the President). Optionally filter by law type (public or private). Shows what legislation has become law. |
| congress_member_bills | Get bills sponsored or cosponsored by a specific member of Congress. Requires the member's BioGuide ID (use congress_search_members to find it). |
| congress_bill_actions | Get the full action history / timeline for a bill — every step from introduction through committee, floor votes, amendments, and signing. Shows recorded roll-call vote numbers when available. Use congress_search_bills first to find the congress number, bill type, and bill number. |
| congress_bill_amendments | Get amendments filed on a specific bill. Shows amendment sponsors, purposes, and status. Critical for tracking how bills are modified (e.g., 'gutted and replaced'). |
| congress_bill_summaries | Get CRS (Congressional Research Service) summaries of a bill. These are plain-English, non-partisan summaries written by CRS analysts. Multiple versions may exist (as introduced, as reported, as passed). |
| congress_bill_text | Get available text versions for a bill (e.g., introduced, reported, engrossed, enrolled). Returns version types and format URLs. For full bill text content, use govinfo_bill_text. |
| congress_bill_related | Find related/companion bills. Identifies House-Senate companion bills, identical bills, and bills with related provisions. Useful for tracking legislation across chambers. |
| congress_bill_subjects | Get legislative subjects tagged on a bill, plus the primary policy area. Useful for finding all bills on a topic and for cross-referencing with lobbying data. |
| congress_bill_committees | Get committees a bill was referred to, with activity dates. Shows which committees had jurisdiction and what actions they took (referral, hearings, markup, reporting). |
| congress_bill_titles | Get all titles for a bill — short titles, official titles, display titles, and titles as they appeared in different text versions. Useful for finding the popular name of legislation (e.g., 'Inflation Reduction Act'). |
| congress_bill_cosponsors | Get the full list of cosponsors for a bill with party affiliation and sponsorship dates. Returns individual cosponsor details unlike congress_bill_details which only provides a party breakdown summary. |
| congress_member_details | Get detailed information about a specific member of Congress by BioGuide ID. Returns full bio, party history, all terms served, committee assignments, photo URL, and official website. Use congress_search_members first to find the BioGuide ID. |
| congress_committees | List congressional committees. Filter by congress number and/or chamber (house, senate, joint). Returns committee name, system code, and chamber. |
| congress_committee_bills | Get bills referred to a specific committee. Use congress_committees to find the committee system code. Useful for tracking which bills die in committee vs. get reported out. |
| congress_committee_details | Get detailed information about a specific congressional committee by chamber and committee code. Returns full history, website URL, subcommittees, bill/report counts, and related communications. |
| congress_amendments | Search/list amendments by congress and optional type (hamdt = House, samdt = Senate, suamdt = Senate Unnumbered). Returns amendment number, type, sponsor, purpose, and status. |
| congress_amendment_details | Get detailed information about a specific amendment, including its actions/timeline. Requires congress number, amendment type (hamdt/samdt), and amendment number. |
| congress_nominations | List presidential nominations to federal offices (judges, cabinet, ambassadors, agency heads). Shows nominee name, position, organization, and confirmation status. |
| congress_nomination_details | Get detailed information about a specific presidential nomination, including all actions (committee referral, hearing, vote, confirmation/rejection). |
| congress_treaties | List treaties submitted to the Senate. Shows treaty topic, date transmitted, and ratification status. |
| congress_treaty_details | Get detailed information about a specific treaty, including all Senate actions (committee referral, hearings, ratification vote). |
| congress_crs_reports | Get Congressional Research Service reports — authoritative, nonpartisan analysis on legislative topics. CRS reports are considered the gold standard for policy research. |
| congress_crs_report_details | Get detailed information about a specific CRS report by report number/ID. Returns full summary, authors, topics, related legislation, and format links (PDF, etc.). |
| congress_summaries_search | Search bill summaries across all bills and congresses. Unlike congress_bill_summaries (which requires a specific bill), this searches CRS summaries across the entire collection. Filter by congress, bill type, and date range. Sorted by last update date. Results include the associated bill reference. |
| congress_info | Get information about congresses and their sessions — start/end dates, session numbers, and chambers. Use to look up when a congress was in session, or get current congress details. |
| congress_congressional_record | Get Congressional Record issues — the official daily record of debate, speeches, and proceedings in Congress. Filter by year, month, and day. |
| congress_law_details | Get detailed information about a specific public or private law, including sponsors, CBO cost estimates, committee reports, and constitutional authority statement. Requires congress number, law type, and law number. |
| congress_committee_reports | List committee reports — formal reports accompanying legislation reported out of committee. Filter by congress, report type (hrpt/srpt/erpt), and conference report flag. Critical for understanding committee intent and legislative history. |
| congress_committee_report_details | Get detailed information about a specific committee report, including associated bills, title, issue date, and text versions. |
| congress_committee_prints | List committee prints — publications ordered by committees that are not committee reports. Often include Rules Committee prints with bill text for floor consideration. |
| congress_committee_print_details | Get details about a specific committee print by congress, chamber, and jacket number. |
| congress_committee_meetings | List committee meetings (hearings, markups, etc.) with dates, locations, and topics. Filter by congress and chamber. |
| congress_committee_meeting_details | Get detailed information about a specific committee meeting including title, committees, witnesses, meeting documents, related bills, and video links. |
| congress_hearings | List congressional hearings. Filter by congress and chamber. Hearings are formal proceedings where committees gather testimony from witnesses. |
| congress_hearing_details | Get detailed information about a specific hearing including title, date, committees, associated meeting, citation, and available text formats. |
| congress_daily_congressional_record | Get daily Congressional Record issues with sections (Senate, House, Extensions of Remarks, Daily Digest). Filter by volume and issue number for specific issues, or list recent issues. |
| congress_bound_congressional_record | Get bound Congressional Record issues — the permanent, final publication of proceedings. Filter by year, month, and day. |
| congress_house_communications | List House communications — executive communications, memorials, presidential messages, and petitions referred to House committees. Types: ec (Executive Communication), ml (Memorial), pm (Presidential Message), pt (Petition). |
| congress_house_communication_details | Get detailed information about a specific House communication including abstract, committees, submitting agency, and legal authority. |
| congress_house_requirements | List House requirements — recurring reporting obligations from executive agencies to Congress. Shows requirement number, frequency, and matching communications count. |
| congress_house_requirement_details | Get detailed information about a specific House requirement including legal authority, frequency, nature, and matching communications count. |
| congress_senate_communications | List Senate communications — executive communications, presidential messages, and petitions/memorials referred to Senate committees. Types: ec (Executive Communication), pm (Presidential Message), pom (Petition or Memorial). |
| congress_senate_communication_details | Get detailed information about a specific Senate communication including abstract, committees, and congressional record date. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| jobs_report | Get a comprehensive labor market overview — employment by industry, unemployment demographics, wages, and job openings. |
| health_overview | Comprehensive U.S. health snapshot: leading causes of death, life expectancy, and international comparison. |
| state_profile | Complete demographic and economic profile of a U.S. state. |
| college_roi | Analyze the return on investment of college — compare costs, debt, and earnings across school types. |
| legislation_tracker | Track the status and details of a specific bill or recent legislation on a topic, with full cross-source analysis. |
| energy_snapshot | Current U.S. energy prices, production trends, and state comparisons. |
| crime_overview | National and state crime trends overview. |
| campaign_finance_summary | Overview of fundraising in the current election cycle with connections to voting records and lobbying. |
| recession_check | Analyze whether the U.S. is in or approaching a recession using key economic indicators with legislative context. |
| recent_legislation_text | Get the full text of recently enacted legislation with vote breakdown and impact analysis. |
| climate_trends | Temperature and precipitation trends for a U.S. location over time. |
| company_snapshot | Quick financial overview of a public company from SEC filings. |
| debt_analysis | Analyze the national debt trend with legislative context and vote breakdowns. |
| exchange_rates | Look up Treasury exchange rates for a specific currency. |
| auction_results | Get recent Treasury securities auction results. |
| interest_rate_comparison | Compare current interest rates across all Treasury security types. |
| federal_spending_overview | Comprehensive overview of federal spending with connections to authorizing legislation and votes. |
| farm_economy | Overview of U.S. agricultural production, prices, and trends. |
| international_comparison | Compare the U.S. to peer nations on key economic and social indicators. |
| compare_presidents | Compare the economic performance of two or more presidents using identical metrics. |
| fiscal_snapshot | Current state of U.S. government finances: debt, deficit, revenue, spending, interest costs. |
| cost_of_living | Analyze the current cost of living: inflation breakdown, housing, gas, food, medical, and wages. |
| follow_the_money | Trace the lobbying and campaign finance pipeline for a specific bill or industry. |
| industry_influence | Map an industry's full influence: lobbying spend, PAC money to both parties, and policy outcomes. |
| politician_profile | Build a complete financial and legislative profile of a politician. |
| state_deep_dive | Comprehensive profile of a U.S. state using 10+ data sources. |
| compare_states | Side-by-side comparison of two states across economic, health, education, and quality-of-life metrics. |
| health_dashboard | National or state health dashboard: leading causes of death, life expectancy, obesity, drug overdose, healthcare spending. |
| workplace_safety | Investigate workplace safety for a company, industry, or state using OSHA data. |
| education_report_card | Education quality assessment: NAEP scores, achievement gaps, college outcomes, and spending. |
| company_accountability | Investigate a company's consumer complaints, safety record, lobbying activity, and financial health. |
| bank_health_check | Assess the health of a bank or the banking system: FDIC data, complaints, failures, interest rate risk. |
| energy_landscape | Current U.S. energy picture: prices, production, renewables, emissions, and policy. |
| disaster_analysis | Analyze a specific disaster or a state/region's disaster history: declarations, aid, weather data, and federal response. |
| vehicle_investigation | Investigate a vehicle make/model for safety recalls, consumer complaints, crash data, and manufacturer lobbying. |
| drug_safety | Investigate a drug's safety record: adverse events, labels, FDA data, and manufacturer profile. |
| food_recall_tracker | Track food safety: recent recalls, contamination patterns, and the companies involved. |
| innovation_landscape | Map the innovation landscape for a technology area: patents, R&D spending, key companies, and federal funding. |
| housing_affordability | Analyze housing affordability: rents, home prices, mortgage rates, income, and policy. |
| crime_analysis | Analyze crime trends: national or state-level crime rates, arrest data, and contextual factors. |
| regulation_tracker | Track a federal regulation from proposal to final rule: public comments, lobbying, and impact. |
| college_comparison | Compare specific colleges on cost, outcomes, debt, and ROI — or find the best schools for a criteria. |
| where_the_money_goes | Trace federal spending: by agency, state, recipient, or keyword. Find who gets taxpayer dollars. |
| nutrition_lookup | Compare foods nutritionally, check for food safety issues, and see what Americans actually eat. |
| us_vs_world | Compare the U.S. to other nations on any metric: economy, health, education, environment, military. |
| agriculture_report | Analyze crop production, farm prices, agricultural trade, and rural economics. |
| hospital_check | Check hospital or nursing home quality: ratings, mortality, infections, patient experience. |
| earthquake_risk | Assess earthquake risk and recent seismic activity for a location or region. |
| drug_pipeline | Analyze the clinical trial pipeline for a disease or drug company. |
| transportation_report | Analyze transportation trends: airline delays, border crossings, transit ridership, infrastructure spending. |
| housing_market | Comprehensive housing market analysis: prices, rents, affordability, mortgage rates. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| API Reference |