PluginBench
MCP Server

io.github.fliptheweb/yazio-mcp MCP Server

io.github.fliptheweb/yazio-mcp

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

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

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

Copy-paste configuration for popular MCP clients.

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

    Yazio Username

  • YAZIO_PASSWORD
    required
    secret

    Yazio Password

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "yazio-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "yazio-mcp"
      ],
      "env": {
        "YAZIO_USERNAME": "<YOUR_YAZIO_USERNAME>",
        "YAZIO_PASSWORD": "<YOUR_YAZIO_PASSWORD>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "yazio-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "yazio-mcp"
      ],
      "env": {
        "YAZIO_USERNAME": "<YOUR_YAZIO_USERNAME>",
        "YAZIO_PASSWORD": "<YOUR_YAZIO_PASSWORD>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "yazio-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "yazio-mcp"
      ],
      "env": {
        "YAZIO_USERNAME": "<YOUR_YAZIO_USERNAME>",
        "YAZIO_PASSWORD": "<YOUR_YAZIO_PASSWORD>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "yazio-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "yazio-mcp"
      ],
      "env": {
        "YAZIO_USERNAME": "<YOUR_YAZIO_USERNAME>",
        "YAZIO_PASSWORD": "<YOUR_YAZIO_PASSWORD>"
      }
    }
  }
}
Claude Code
claude mcp add yazio-mcp --env YAZIO_USERNAME=<YOUR_YAZIO_USERNAME> --env YAZIO_PASSWORD=<YOUR_YAZIO_PASSWORD> -- npx -y yazio-mcp

Related MCP servers

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

View repository →