# mgnirck/lecka-mcp [Health: Active]

**Category:** Biology, Medicine and Bioinformatics  
**Repository:** https://github.com/mgnirck/lecka-mcp  
**GitHub Stars:** 1  
**Views:** 2  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/mgnirck-lecka-mcp

## Description
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-mcp)

## Claude Desktop Quick Installation
Heuristic fallback — verify the package name and runner against the repository README before running it. Uses `npx` (confidence: low):

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

## Documentation & README

# 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](https://github.com/modelcontextprotocol/typescript-sdk) and deployed on Vercel.

## Tools

| Tool | Description |
|------|-------------|
| `get_products` | Returns the full catalog of Lecka nutrition products |
| `calculate_fueling_plan` | Calculates a race-day fueling plan based on duration, intensity, and athlete data |
| `get_nutrition_data` | Retrieves 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`:

```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

```bash
npm install
npm start
```

