General Tools
getvitamind.app
Provides sunrise/sunset times, UV index, and vitamin D synthesis windows for any location.
ENDPOINT 1
https://getvitamind.app/api/mcp/mcp
MCP server metadata
- Name
- vitamind-explorer
- Version
- 1.0.0
Known tools 15
search_cityFind 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-onlyget_sun_timesSunrise, 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-onlyget_vitamin_d_windowThe 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-onlyget_vitamin_d_yearThe WHOLE YEAR of solar vitamin D for a location in a single call.
Inferred read-onlyconfigure_sun_profileShow 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-onlyget_sun_forecastThe 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-onlycompare_vitamin_d_yearCompare 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-onlyget_current_statusWhether 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-onlyestimate_sun_sessionEstimate a sun session's outcome: 'I was (or will be) out N minutes — how much vitamin D did I make?
Inferred read-onlyget_my_profileThe signed-in user's saved Vitamin D profile: skin type, exposed-skin default, age, target IU and their current city.
Inferred read-onlyget_my_citiesThe signed-in user's current city and favorite cities with coordinates and timezones, ready to feed into the public tools.
Inferred read-onlyupdate_my_profileSave 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-onlyget_my_historyThe 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-onlyset_history_locationRecords where the signed-in user was over a range of past days, so their history stops assuming.
Inferred read-onlyCONNECT 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
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.
getvitamind.app is assessed as Neutral: No suspicious signals found, but no strong positive signal either
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.