LTV Cohort Calculator

LTV Cohort Calculator MCP Connector for Claude

A+

Calculate Customer Lifetime Value (LTV) for any acquisition cohort, projecting future revenue trends.

3 tools Official Updated Jun 28, 2026 Official Vinkius Partner

[Hook] Understanding the true value of a customer group is critical to sustainable business growth. But raw revenue data doesn't tell the full story.

ltvcohort-analysisrevenue-projectioncustomer-valuelifetime-value

3 tools expose this connector's capabilities to your AI agent.

calculate_cumulative_ltv

Milestones are specified as months after acquisition. Calculate total accumulated LTV at fixed milestones for a cohort

fetch_cohort_metrics

Use acquireMonth in YYYY-MM format and optionally specify how many months of history to retrieve. Fetch raw accumulated monthly revenues for a given acquisition cohort

generate_ltv_projections

Historical metrics must be provided as a JSON array of objects with periodIndex and accumulatedRevenueValue fields. Project LTV at 36 months using linear and logarithmic extrapolation methods

See how to talk to your AI agent using LTV Cohort Calculator.

Please analyze the '2023-01' cohort. First, fetch all historical revenue data for 36 months, and then calculate its LTV at 3, 6, and 12 months.

First, I will call `fetch_cohort_metrics(acquireMonth='2023-01', cohortLengthMonths=36)` to get the full revenue history. Then, using that data, I will run `calculate_cumulative_ltv(cohortIdentifier='2023-01', targetMilestones=[3, 6, 12])`.

I need a long-term forecast for the '2022-11' cohort. Project its LTV to 36 months using both linear and logarithmic methods.

To project the LTV, I must first compile the historical data by calling `fetch_cohort_metrics(acquireMonth='2022-11', cohortLengthMonths=36)`. Once I have the full metrics JSON array, I will pass it to `generate_ltv_projections` for the final forecast.

What is the current LTV status of the '2023-04' cohort at 24 months?

I will use the `calculate_cumulative_ltv` tool, specifying `cohortIdentifier='2023-04'` and `targetMilestones=[24]`. This provides the accurate cumulative LTV up to the 24-month mark.

Use the `fetch_cohort_metrics` tool. This function retrieves the accumulated monthly revenues for a specific cohort, providing the foundational time-series data required for all subsequent LTV analyses.

Related Connectors