PluginBench
MCP Server

io.github.fliptheweb/fatsecret-mcp MCP Server

io.github.fliptheweb/fatsecret-mcp

What is the io.github.fliptheweb/fatsecret-mcp MCP server?

MCP server for FatSecret API - food search, nutrition, diary, recipes, weight tracking (unofficial)

How to install io.github.fliptheweb/fatsecret-mcp

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • FATSECRET_CLIENT_ID
    required
    secret

    FatSecret API Client ID

  • FATSECRET_CLIENT_SECRET
    required
    secret

    FatSecret API Client Secret (OAuth 2.0)

  • FATSECRET_CONSUMER_SECRET
    required
    secret

    FatSecret API Consumer Secret (OAuth 1.0)

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "fatsecret-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "fatsecret-mcp"
      ],
      "env": {
        "FATSECRET_CLIENT_ID": "<YOUR_FATSECRET_CLIENT_ID>",
        "FATSECRET_CLIENT_SECRET": "<YOUR_FATSECRET_CLIENT_SECRET>",
        "FATSECRET_CONSUMER_SECRET": "<YOUR_FATSECRET_CONSUMER_SECRET>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "fatsecret-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "fatsecret-mcp"
      ],
      "env": {
        "FATSECRET_CLIENT_ID": "<YOUR_FATSECRET_CLIENT_ID>",
        "FATSECRET_CLIENT_SECRET": "<YOUR_FATSECRET_CLIENT_SECRET>",
        "FATSECRET_CONSUMER_SECRET": "<YOUR_FATSECRET_CONSUMER_SECRET>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "fatsecret-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "fatsecret-mcp"
      ],
      "env": {
        "FATSECRET_CLIENT_ID": "<YOUR_FATSECRET_CLIENT_ID>",
        "FATSECRET_CLIENT_SECRET": "<YOUR_FATSECRET_CLIENT_SECRET>",
        "FATSECRET_CONSUMER_SECRET": "<YOUR_FATSECRET_CONSUMER_SECRET>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "fatsecret-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "fatsecret-mcp"
      ],
      "env": {
        "FATSECRET_CLIENT_ID": "<YOUR_FATSECRET_CLIENT_ID>",
        "FATSECRET_CLIENT_SECRET": "<YOUR_FATSECRET_CLIENT_SECRET>",
        "FATSECRET_CONSUMER_SECRET": "<YOUR_FATSECRET_CONSUMER_SECRET>"
      }
    }
  }
}
Claude Code
claude mcp add fatsecret-mcp --env FATSECRET_CLIENT_ID=<YOUR_FATSECRET_CLIENT_ID> --env FATSECRET_CLIENT_SECRET=<YOUR_FATSECRET_CLIENT_SECRET> --env FATSECRET_CONSUMER_SECRET=<YOUR_FATSECRET_CONSUMER_SECRET> -- npx -y fatsecret-mcp

Related MCP servers

MCP server for accessing Yazio user & nutrition data (unofficial)

View repository →