# BEA Economic Accounts MCP server

County GDP, personal income, and employment from the Bureau of Economic Analysis

## Links
- Registry page: https://www.getdrio.com/mcp/com-olyport-bea
- Website: https://olyport.com

## Install
- Endpoint: https://mcp.olyport.com/bea/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://mcp.olyport.com/bea/mcp

## Tools
- get_county_gdp - Get GDP by county from the BEA Regional accounts (CAGDP1 table).

    Returns all-industry GDP for a county or state total. When year is omitted,
    returns the last 5 available years.

    GeoFips format: 5-digit county FIPS (e.g. '53067' for Thurston County, WA).
    For state totals use 2-digit state FIPS + '000' (e.g. '53000' for Washington).

    Args:
        county_fips: 5-digit county FIPS code (e.g. '53067') or state total (e.g. '53000').
        year: Specific year to retrieve. Omit for last 5 years.
     Endpoint: https://mcp.olyport.com/bea/mcp
- get_county_personal_income - Get personal income by county from the BEA Regional accounts (CAINC1 table).

    Returns total personal income for a county or state total. When year is omitted,
    returns the last 5 available years.

    GeoFips format: 5-digit county FIPS (e.g. '53067') or state total (e.g. '53000').

    Args:
        county_fips: 5-digit county FIPS code (e.g. '53067') or state total (e.g. '53000').
        year: Specific year to retrieve. Omit for last 5 years.
     Endpoint: https://mcp.olyport.com/bea/mcp
- get_county_employment - Get total full-time and part-time employment by county from BEA (CAEMP25N table).

    Returns employment counts for a county or state total. When year is omitted,
    returns the last 5 available years.

    GeoFips format: 5-digit county FIPS (e.g. '53067') or state total (e.g. '53000').

    Args:
        county_fips: 5-digit county FIPS code (e.g. '53067') or state total (e.g. '53000').
        year: Specific year to retrieve. Omit for last 5 years.
     Endpoint: https://mcp.olyport.com/bea/mcp
- get_metro_gdp - Get GDP by metropolitan statistical area from BEA (MAGDP1 table).

    Returns all-industry GDP for an MSA. When year is omitted,
    returns the last 5 available years.

    Args:
        msa_code: MSA/CBSA code (e.g. '42660' for Seattle-Tacoma-Bellevue).
        year: Specific year to retrieve. Omit for last 5 years.
     Endpoint: https://mcp.olyport.com/bea/mcp
- list_available_tables - List all available Regional dataset table names from the BEA API.

    Returns table name codes and descriptions for use with other BEA tools.
    Useful for discovering which datasets are available.
     Endpoint: https://mcp.olyport.com/bea/mcp

## Resources
Not captured

## Prompts
Not captured

## Metadata
- Owner: com.olyport
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Apr 3, 2026
- Source: https://registry.modelcontextprotocol.io
