← Registry

General Tools

getvitamind.app

Provides sunrise/sunset times, UV index, and vitamin D synthesis windows for any location.

2 endpoints15 known toolsFirst detected July 28, 2026Last detected September 6, 2026

ENDPOINT 1

https://getvitamind.app/api/mcp/mcp

No auth detected

MCP server metadata

Name
vitamind-explorer
Version
1.0.0
Capabilities
resources.listChangedtools.listChanged

Known tools 15

search_city

Find a city in the app's database by name (any of the app's six languages works) and get its coordinates, IANA timezone and elevation — feed those into the other tools.

Inferred read-only
get_sun_times

Sunrise, sunset, solar noon, civil dawn/dusk, morning AND evening golden hour, and day length (with day-over-day trend) for a location and date.

Inferred read-only
get_vitamin_d_window

The solar vitamin D synthesis window for ONE specific day at a location, for a personal profile: when UV is strong enough (index ≥ 3), the best hour, the clear-sky minutes needed to reach the target IU, and (with atTime) the minutes at the specific hour the user plans to go out.

Inferred read-only
get_vitamin_d_year

The WHOLE YEAR of solar vitamin D for a location in a single call.

Inferred read-only
configure_sun_profile

Show the user an interactive form for the four values every other tool assumes — Fitzpatrick skin type, fraction of skin exposed, age and target IU — with the minutes they need updating live.

Inferred read-only
get_sun_forecast

The NEXT FEW DAYS of vitamin D sun at a location, using the live Open-Meteo forecast: per day the peak UV, average cloud cover, the synthesis window and the minutes needed, plus bestDay.

Inferred read-only
compare_vitamin_d_year

Compare the vitamin D year of 2 to 5 places side by side in ONE call — 'Madrid vs Berlin vs Oslo, where do I actually get winter sun?

Inferred read-only
get_current_status

Whether RIGHT NOW is a good moment for vitamin D synthesis at a location, using live Open-Meteo UV/cloud data when reachable (clear-sky model otherwise): current UV index, minutes needed now, and when today's window opens or closes.

Inferred read-only
estimate_sun_session

Estimate a sun session's outcome: 'I was (or will be) out N minutes — how much vitamin D did I make?

Inferred read-only
get_my_profile

The signed-in user's saved Vitamin D profile: skin type, exposed-skin default, age, target IU and their current city.

Inferred read-only
get_my_cities

The signed-in user's current city and favorite cities with coordinates and timezones, ready to feed into the public tools.

Inferred read-only
update_my_profile

Save the signed-in user's synthesis profile — skin type, exposed-skin fraction, age and target IU — to their account, so the app and every later call use them.

Inferred read-only
get_my_history

The signed-in user's sun history from the app's calendar: which recent days had viable sun, which they confirmed going outside, and their current streak.

Inferred read-only
log_sun_session

Sets a day's answer in the signed-in user's history calendar.

Inferred read-only
set_history_location

Records where the signed-in user was over a range of past days, so their history stops assuming.

Inferred read-only

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.vitamind-explorer]
url = "https://getvitamind.app/api/mcp/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "vitamind-explorer": {
      "type": "http",
      "url": "https://getvitamind.app/api/mcp/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: vitamind-explorer
Remote MCP URL: https://getvitamind.app/api/mcp/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "vitamind-explorer": {
      "url": "https://getvitamind.app/api/mcp/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "vitamind-explorer": {
      "type": "http",
      "url": "https://getvitamind.app/api/mcp/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "vitamind-explorer",
  "transport": "streamable-http",
  "url": "https://getvitamind.app/api/mcp/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

ENDPOINT 2

https://getvitamind.app/api/mcp-auth/mcp

Auth required

Known tools 0

No tool metadata was available in the registry cache.

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.getvitamind-app]
url = "https://getvitamind.app/api/mcp-auth/mcp"
enabled = true
bearer_token_env_var = "MCP_BEARER_TOKEN"

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Code

.mcp.json

{
  "mcpServers": {
    "getvitamind-app": {
      "type": "http",
      "url": "https://getvitamind.app/api/mcp-auth/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Claude Desktop

Settings → Connectors → Add custom connector

Name: getvitamind-app
Remote MCP URL: https://getvitamind.app/api/mcp-auth/mcp

Add the URL as a custom connector, then complete its supported authorization flow. Claude Desktop remote connectors are configured in the UI.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "getvitamind-app": {
      "url": "https://getvitamind.app/api/mcp-auth/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_BEARER_TOKEN"
      }
    }
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Visual Studio Code

.vscode/mcp.json

{
  "servers": {
    "getvitamind-app": {
      "type": "http",
      "url": "https://getvitamind.app/api/mcp-auth/mcp",
      "headers": {
        "Authorization": "Bearer ${input:mcp-token}"
      }
    }
  },
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-token",
      "description": "getvitamind-app bearer token",
      "password": true
    }
  ]
}

Authentication is required. Replace the placeholder locally and never commit a secret.

Generic MCP

Client-specific MCP configuration

{
  "name": "getvitamind-app",
  "transport": "streamable-http",
  "url": "https://getvitamind.app/api/mcp-auth/mcp",
  "headers": {
    "Authorization": "Bearer YOUR_BEARER_TOKEN"
  }
}

Authentication is required. Replace the placeholder locally and never commit a secret.

MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

TRUST AND VERIFICATION EVIDENCE

Trust Data Available

BuiltWith Trust API v2 evidence for getvitamind.app was fetched 2026-08-24T06:39:37.046Z.

Trust status Neutral

getvitamind.app is assessed as Neutral: No suspicious signals found, but no strong positive signal either

Indexed

Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.