ValueinValuein
Universe
PIT-safe

Point-in-Time Universe

get_pit_universe
Free
Pro · Institutional

Returns the exact set of active companies as of a specific historical date. Essential for survivorship-bias-free universe construction in backtests — prevents future additions from appearing in historical portfolios. Filterable by index membership and sector.

Example Call

example_call.pypython
# Using the Valuein MCP server from Python (via MCP SDK)# Or call directly from Claude / Cursor after setup result = await client.call_tool(    "get_pit_universe",    arguments={    "as_of_date": "EXAMPLE"})print(result)

Direct tool call:get_pit_universe(as_of_date="2020-03-01", index="SP500")

Try it now

No token required

Paste this in your terminal — the free tier returns real S&P500 data without authentication.

try-it.shbash
# No auth required — sample tier covers S&P500 with a 5-year window.# Add an Authorization: Bearer header for full universe and history.$ curl -X POST https://mcp.valuein.biz/mcp \    -H "Content-Type: application/json" \    -d '{        "jsonrpc": "2.0",        "id": 1,        "method": "tools/call",        "params": {          "name": "get_pit_universe",          "arguments": {            "as_of_date": "AAPL"          }        }      }'

Inputs

ParameterTypeRequiredDescription
as_of_datestring
required
YYYY-MM-DD. Returns companies active on this exact date.
indexstringoptionalFilter to index members: SP500, RUSSELL2000, etc.
sectorstringoptionalFilter by sector (case-insensitive partial match).

Output Fields

ciktickernamesectorindustrysic_codestatusis_sp500

Example Response

Illustrative
response.jsonjson
{  "cik": "0000320193",  "ticker": "AAPL",  "name": "Apple Inc.",  "sector": "Technology",  "industry": "Consumer Electronics",  "sic_code": "3674",  "status": "ACTIVE",  "is_sp500": true}

Shape only — field names match the live schema; values are placeholders, not real filings. Returns the exact 505 S&P500 constituents as of March 1, 2020 — before COVID-era additions.

Notes

This is the only tool that correctly handles the universe construction problem for backtesting. Using the current S&P500 list for 2020 data introduces survivorship bias.