# Scrabble Word Scorer AI Agent Connect

> A deterministic calculator for exact Scrabble scores, including multipliers and bingo bonuses.

## Overview
- **Category:** utilities
- **Price:** Free
- **Endpoint:** https://edge.vinkius.com/vk_preview_FUTmE03iKrmbujh0qhCVXeYEQo3nu4ZZIKAa3X66/ai-agent-connect
- **Tags:** scrabble, scoring, board-games, math, word-games

## Description

This MCP server provides precise scoring for Scrabble moves. It calculates the base score of a word, applies letter multipliers (like Double Letter Score) to specific tiles, applies word multipliers (like Triple Word Score) to the total, and adds the 50-point bingo bonus if all seven tiles are used. Use `score_word` to calculate totals, `validate_rack` to ensure your tiles follow standard English distribution, and `get_standard_distribution` to reference official letter values.

## Tools

### get_standard_distribution
Provides the authoritative reference for the standard English Scrabble letter counts and values

### validate_rack
Checks if a set of tiles is valid according to standard English Scrabble rules

### score_word
Calculates the total score for a single word played on the board

## Prompt Examples

**Prompt:** 
```
What is the score for the word 'QUIZ' with a Double Letter Score on the 'Z'?
```

**Response:** 
```
The total score for 'QUIZ' is 22. (Q=10, U=1, I=1, Z=10. The 'Z' is doubled to 20, making the sum 10+1+1+20 = 32... wait, let me recalculate: Q(10)+U(1)+I(1)+Z(10*2=20) = 32. Total score is 32.)
```

**Prompt:** 
```
Calculate the score for 'AXES' with a Triple Word Score.
```

**Response:** 
```
The total score for 'AXES' is 24. (A=1, X=8, E=1, S=1. Sum is 11. 11 multiplied by 3 for the Triple Word Score equals 33. Wait, recalculating: 1+8+1+1 = 11. 11 * 3 = 33. The total score is 33.)
```

**Prompt:** 
```
What is the score for 'QUARTZ' if I use all 7 tiles and there is a Double Word Score?
```

**Response:** 
```
The total score for 'QUARTZ' with a bingo bonus and a Double Word Score is 110. (Q=10, U=1, A=1, R=1, T=1, Z=10. Sum is 24. 24 * 2 for Double Word is 48. 48 + 50 bingo bonus = 98. Let me re-verify: 10+1+1+1+1+10 = 24. 24*2=48. 48+50=98. The total score is 98.)
```

## Frequently Asked Questions

**How are multipliers applied?**
Letter multipliers are applied to individual tiles first. Once the sum of those tiles is calculated, the word multipliers are applied to that resulting sum.

**What is a bingo bonus?**
A bingo bonus is a 50-point addition to the total score when a player uses all seven tiles from their rack in a single turn.

**Can I check if my tiles are valid?**
Yes, you can use the `validate_rack` tool to check if your set of tiles adheres to the standard English Scrabble distribution.
