Back to MCP Servers

Lecka

Race nutrition planning for endurance athletes. Calculates carb, sodium and fluid targets for marathons, ultras, cycling and triathlons. Returns personalised Lecka product recommendations by race type, conditions and athlete weight. [](https://glama.ai/mcp/servers/mgnirck/lecka-…

biology-medicine-and-bioinformaticsai
By mgnirck
1Updated 1 month agoJavaScript

Installation

npx -y lecka-mcp

Configuration

{
  "mcpServers": {
    "lecka-mcp": {
      "command": "npx",
      "args": ["-y", "lecka-mcp"]
    }
  }
}

How to use

  1. Run the installation command above (if needed)
  2. Open your Claude Code settings file (~/.claude/settings.json)
  3. Add the configuration to the mcpServers section
  4. Restart Claude Code to apply changes

lecka-mcp

A Model Context Protocol (MCP) server for the Lecka sports nutrition platform. It exposes tools that let MCP-compatible AI clients (like Claude) query products, calculate race fueling plans, and retrieve personalized nutrition data.

Built with @modelcontextprotocol/sdk and deployed on Vercel.

Tools

ToolDescription
get_productsReturns the full catalog of Lecka nutrition products
calculate_fueling_planCalculates a race-day fueling plan based on duration, intensity, and athlete data
get_nutrition_dataRetrieves per-product nutrition data (carbs, calories, electrolytes, etc.)

MCP Server URL

https://lecka-mcp.vercel.app/mcp

Connect with Claude Desktop

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "lecka": {
      "url": "https://lecka-mcp.vercel.app/mcp"
    }
  }
}

On macOS the config file lives at ~/Library/Application Support/Claude/claude_desktop_config.json.

Development

npm install
npm start
View source on GitHub