# Powerlifting Coefficient Calculator AI Agent Connect

> Calculate and compare strength scores using Wilks, DOTS, and IPF GL coefficients.

## Overview
- **Category:** mathematics
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_mrbGkAwa8E1UCKdLr1gMIhzk5JsoPu8Ac4gkGyxS/ai-agent-connect
- **Tags:** powerlifting, strength, fitness, coefficients, sports-science

## Description

This MCP server provides deterministic tools to normalize powerlifting performance across different weight classes. By using mathematical coefficients, lifters can be compared fairly regardless of their body mass. The server includes tools to `calculate_strength_scores` for Wilks, DOTS, and IPF GL metrics, identify official competition weight classes via `get_weight_class`, and perform comparative analysis using `rank_lifters_by_coefficient`.

## Tools

### calculate_strength_scores
Calculates standard powerlifting coefficients (Wilks, DOTS, IPF GL) for a lifter

### rank_lifters_by_coefficient
Ranks a list of lifters based on a specific coefficient

### get_weight_class
Identifies the official competition weight class for a lifter

## Prompt Examples

**Prompt:** 
```
Calculate the strength scores for a male lifter weighing 90kg with a 250kg total.
```

**Response:** 
```
The calculated scores for this lifter are: Wilks: 325.4, DOTS: 342.1, and IPF GL: 338.5.
```

**Prompt:** 
```
What weight class is a 65kg female lifter in?
```

**Response:** 
```
A 65kg female lifter belongs to the 63kg Class (range: 60kg - 63kg) or the 69kg Class depending on the specific federation table used.
```

**Prompt:** 
```
Rank these lifters by DOTS: [{bodyweight: 70, totalLifted: 400, gender: 'male'}, {bodyweight: 100, totalLifted: 500, gender: 'male'}]
```

**Response:** 
```
1. Lifter 1 (Score: 415.2), 2. Lifter 2 (Score: 398.5).
```

## Frequently Asked Questions

**What is a DOTS score?**
DOTS is a modern coefficient used to compare strength across different weight classes in powerlifting, providing a more accurate relative strength metric than older systems.

**Can I compare lifters of different genders?**
The tool applies gender-specific polynomial constants to ensure that both male and female lifters receive accurate, physiologically appropriate scores.

**How do I rank multiple athletes at once?**
You can use the `rank_lifters_by_coefficient` tool by providing a list of lifter profiles to receive a sorted ranking based on your chosen coefficient.
