Ovulation Calculator SkillOvulation Calculator Skill

OnlineCredit Usage:1 per callTool:OvulationCalculatorSkill

The tool

The API calculates most fertile days, follicular and luteal phases, and provides a comprehensive fertility calendar with day-by-day fertility levels.

Once your client is connected to the VerveKit MCP server, this appears in its tool list as OvulationCalculatorSkill. It is read-only and open-world: it fetches, it never mutates anything on your side, so most clients will call it without asking you to confirm.

Tool call
{
  "name": "OvulationCalculatorSkill",
  "arguments": {
    "last_period": "2024-01-01"
  }
}

What that looks like in a conversation

You don't name the tool — the model picks it. Asking about 2024-01-01 in the terms this source covers is enough for it to reach for OvulationCalculatorSkill on its own.

Connecting

One server URL covers every skill in the catalog, including this one. Authorization is OAuth — the client opens a browser once and there is no key to paste into a config file.

Client config
{
  "mcpServers": {
    "vervekit": {
      "url": "https://api.vervekit.com/v1/mcp"
    }
  }
}
Endpoint
https://api.vervekit.com/v1/mcp

Per-client setup — Claude Desktop, Cursor, VS Code, ChatGPT — is on the MCP setup page.

Arguments

These are the properties on the tool's inputSchema, so a well-behaved client validates them before the call is made.

ArgumentTypeExampleDescription
last_periodRequiredstring2024-01-01First day of last menstrual period (YYYY-MM-DD)
cycle_lengthinteger28Average menstrual cycle length in days

What the model gets back

The result carries a structuredContent object matching the tool's declared outputSchema, so a client can read fields without parsing prose. status is "ok" on success and error is null; a null field means the value wasn't available for that input, not that the call failed.

Result
{
  "status": "ok",
  "error": null,
  "data": {
    "last_period": "2024-01-01",
    "cycle_length": 28,
    "ovulation": {
      "date": "2024-01-15",
      "days_from_last_period": 14
    },
    "fertile_window": {
      "start": "2024-01-10",
      "end": "2024-01-15",
      "duration_days": 6
    },
    "most_fertile_days": {
      "start": "2024-01-13",
      "end": "2024-01-15",
      "duration_days": 3
    },
    "fertile_days": [
      {
        "date": "2024-01-10",
        "day_relative_to_ovulation": -5,
        "fertility_level": "medium",
        "description": "Fertile"
      },
      {
        "date": "2024-01-11",
        "day_relative_to_ovulation": -4,
        "fertility_level": "medium",
        "description": "Fertile"
      },
      {
        "date": "2024-01-12",
        "day_relative_to_ovulation": -3,
        "fertility_level": "medium",
        "description": "Fertile"
      },
      {
        "date": "2024-01-13",
        "day_relative_to_ovulation": -2,
        "fertility_level": "high",
        "description": "Most fertile"
      },
      {
        "date": "2024-01-14",
        "day_relative_to_ovulation": -1,
        "fertility_level": "high",
        "description": "Most fertile"
      },
      {
        "date": "2024-01-15",
        "day_relative_to_ovulation": 0,
        "fertility_level": "high",
        "description": "Most fertile"
      }
    ],
    "next_period": {
      "date": "2024-01-29",

Fields

Fields marked Premium need a paid plan. On a plan without them the key is absent rather than wrong, so a model never reasons over a substituted value.
FieldTypeExampleDescription
last_periodstring2024-01-01The first day of the last menstrual period provided
cycle_lengthnumber28The average menstrual cycle length in days
ovulationobject{…}Estimated ovulation date and how many days into the cycle it falls
ovulation.datestring2024-01-15Calculated ovulation date in YYYY-MM-DD format
ovulation.days_from_last_periodPremiumnumber14Number of days from last period to ovulation
fertile_windowobject{…}Range of days conception is possible, with its length
fertile_window.startPremiumstring2024-01-10Start date of the fertile window period
fertile_window.endPremiumstring2024-01-15End date of the fertile window period
fertile_window.duration_daysPremiumnumber6Total duration of fertile window in days
most_fertile_daysobject{…}The narrower range with the highest chance of conception
most_fertile_days.startPremiumstring2024-01-13Start date of the most fertile days period
most_fertile_days.endPremiumstring2024-01-15End date of the most fertile days period
most_fertile_days.duration_daysPremiumnumber3Duration of the most fertile days in days
fertile_daysPremiumarray[6]list of rowsArray of daily fertility data with levels and descriptions
fertile_days.0.datestring2024-01-10
fertile_days.0.day_relative_to_ovulationnumber-5
fertile_days.0.fertility_levelstringmedium
fertile_days.0.descriptionstringFertile
next_periodobject{…}Estimated start of the next period and how many days away it is
next_period.datePremiumstring2024-01-29Estimated date of the next menstrual period
next_period.days_from_last_periodPremiumnumber28Days from last period to expected next period
cycle_phasesobject{…}The phases of the cycle with their length and what happens in each
cycle_phases.follicular_phaseobject{…}From the first day of the period to ovulation
cycle_phases.follicular_phase.duration_daysPremiumnumber14Duration of follicular phase in days
cycle_phases.follicular_phase.descriptionPremiumstringFrom first day of period to ovulationDescription of the follicular phase
cycle_phases.ovulationobject{…}The day the egg is released
cycle_phases.ovulation.duration_daysPremiumnumber1Duration of ovulation phase in days
cycle_phases.ovulation.descriptionPremiumstringEgg is released from ovaryDescription of the ovulation phase
cycle_phases.luteal_phaseobject{…}From ovulation to the start of the next period
cycle_phases.luteal_phase.duration_daysPremiumnumber14Duration of luteal phase in days
cycle_phases.luteal_phase.descriptionPremiumstringFrom ovulation to next periodDescription of the luteal phase
current_statusobject{…}Where today falls in the cycle, and whether it is a fertile day
current_status.current_phasePremiumstringMenstruationCurrent phase of menstrual cycle relative to today
current_status.is_fertilePremiumbooleanfalseWhether the user is currently in the fertile window
current_status.days_until_ovulationPremiumnumber-701Days until ovulation from today (negative if past)
current_status.days_until_next_periodPremiumnumber-687Days until next period from today (negative if past)
disclaimerstringThis calculator provides estimates only. Actual ovulation may vary. Consult a healthcare provider for medical advice.Medical disclaimer regarding calculator accuracy

Failure modes

Errors come back as tool errors with a sentence the model can act on, not a bare status code.

StatusWhat it means
400 / 422The arguments didn't validate. The message names the offending one.
401The OAuth session is invalid or expired — reconnect the server.
403Out of credits. Not a bad key — the month's allowance is spent.
404This skill isn't part of VerveKit. Check the catalog.
429Brief rate limit. Retrying after a moment succeeds.

Other ways to use Ovulation Calculator Skill

Set up Ovulation Calculator Skill on VerveKit, or reach the same source a different way. Your VerveKit account and credits work on all of them — one key, one balance.

Call it as a REST APIOne HTTPS endpoint and an X-API-Key header, with SDKs for Node, Python and .NET.APIVerveReference →
Use it in Google Sheets or ExcelA =VERVE() formula fills a column — no script, no export, recalculates in place.VerveSheetsReference →
Ground an agent on itA cited, machine-checkable fact your model can't produce on its own.VerveContextReference →

Frequently asked questions

Do I have to tell the agent to use OvulationCalculatorSkill?

No. The tool's name and description are in the model's context once the server is connected, so it selects the tool when the question calls for it. Naming it explicitly works too and is useful when you want to force the call.

Does connecting the server expose every tool at once?

Yes — one connection lists the whole VerveKit catalog. Clients with a tool budget can usually filter the list; the credit cost is per call, so an unused tool costs nothing.

What does a call cost?

1 credit each time the tool actually runs. A model that reasons about the tool without calling it costs nothing.

Is there a REST version of this?

Yes — the same source is available as a plain HTTPS endpoint on APIVerve, linked above. Same data, same credits, same account.

What's Next?

Continue your journey with these recommended resources

Was this page helpful?