← forkmate.ai

INDIVIDUAL MCP TOOL

get_preferences

Read the user's saved dietary preferences so you can tailor logging and suggestions WITHOUT re-asking every chat: their diet style, a structured list of allergies to avoid (the big-9 major allergens), foods they dislike, and a typical-portion note.

forkmate.ainone authenticationAvailability not checked

LIVE ENDPOINT

https://mcp.forkmate.ai

No auth detected

Connect to this endpoint to inspect the live schema for get_preferences and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent server

forkmate.ai

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.forkmate]
url = "https://mcp.forkmate.ai"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "forkmate": {
      "type": "http",
      "url": "https://mcp.forkmate.ai"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: forkmate
Remote MCP URL: https://mcp.forkmate.ai

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": {
    "forkmate": {
      "url": "https://mcp.forkmate.ai"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "forkmate": {
      "type": "http",
      "url": "https://mcp.forkmate.ai"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "forkmate",
  "transport": "streamable-http",
  "url": "https://mcp.forkmate.ai"
}
MCP Inspector

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

Related tools

  • whoami — Diagnostic: returns the authenticated user id and scopes.
  • get_day — Read the user's food diary for a day (entries + calorie/macro totals).
  • get_range — Read the user's diary across a date range, with per-day calorie/macro totals.
  • log_meal — Log what the user ate to their food diary.
  • update_meal — Correct a food already logged to the user's diary — fix a wrong calorie/macro value, quantity, or name, or move an entry to a different meal.
  • delete_meal — Delete a food from the user's diary — remove one food from an entry (by `item_index`), or the whole entry (omit `item_index`).
  • get_pantry — Read the user's PANTRY — the foods they keep ON HAND (their staples), so you can suggest meals from what they actually have and pre-fill macros when they log one.
  • add_pantry_item — Add a food to the user's pantry, or UPDATE it if it's already there (matched by name, any casing) — e.