# LastLook Data (verified)

LastLook Data gives AI agents real-time access to US financial market data: Treasury yields (2yr, 10yr, 30yr), mortgage rates, Fed funds rate, CPI, unemployment, GDP, WTI/Brent crude, natural gas, an…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y smithery mcp add zev/lastlook-data

# Browse available tools
npx -y smithery tool list zev/lastlook-data

# Get full schema for a tool
npx -y smithery tool get zev/lastlook-data get_treasury_yield_current

# Call a tool
npx -y smithery tool call zev/lastlook-data get_treasury_yield_current '{}'
```

## Direct MCP Connection

Endpoint: `https://lastlook-data--zev.run.tools`

## Tools (5)

- `get_treasury_yield_current` — Returns the most recent 30-year US Treasury constant maturity yield (DGS30) from FRED. Use this specifically for the 30…
- `get_treasury_yield_by_date` — Returns the 30-year US Treasury yield for a specific date. Business days only. Use YYYY-MM-DD format.
- `get_series` — Returns recent observations for any supported FRED data series. Use this to get current and historical values for mortg…
- `get_fx_rate_current` — Returns the current exchange rate for a G10 currency pair. Source: European Central Bank. Supported: EURUSD, GBPUSD, US…
- `get_fx_rate_series` — Returns historical daily exchange rates for a G10 currency pair. Source: European Central Bank.

```bash
# Get full input/output schema for a tool
npx -y smithery tool get zev/lastlook-data <tool-name>
```
