buymeapie-mcp
by glitchcrab
README.md
# buymeapie-mcp
MCP server for [Buy Me A Pie](https://buymeapie.com/) — manage your shopping lists from Claude.
Runs as a local Docker container over stdio.
## Build
```bash
docker build -t buymeapie-mcp .
```
## Configure in Claude Code
Add to `~/.claude/settings.json` (or project `.claude/settings.json`):
```json
{
"mcpServers": {
"buymeapie": {
"command": "docker",
"args": [
"run", "--rm", "-i",
"-e", "BUYMEAPIE_USERNAME",
"-e", "BUYMEAPIE_PIN",
"buymeapie-mcp"
],
"env": {
"BUYMEAPIE_USERNAME": "your@email.com",
"BUYMEAPIE_PIN": "yourpin"
}
}
}
}
```
## Available tools
| Tool | Description |
|------|-------------|
| `list_shopping_lists` | List all your shopping lists |
| `get_list_items` | Get all items in a list |
| `create_list` | Create a new shopping list |
| `delete_list` | Delete a shopping list |
| `rename_list` | Rename a shopping list |
| `add_item` | Add an item (with optional amount) to a list |
| `mark_item_purchased` | Mark an item as purchased |
| `update_item_amount` | Change the amount on an item |
| `delete_item` | Remove an item from a list |
## Environment variables
| Variable | Required | Description |
|----------|----------|-------------|
| `BUYMEAPIE_USERNAME` | Yes | Your Buy Me A Pie account email |
| `BUYMEAPIE_PIN` | Yes | Your Buy Me A Pie PIN |
TDQS
A3.8/5.0
Scored across 9 tools
Disambiguation5/5
Each tool targets a distinct operation (add item, delete list, mark purchased, etc.) with clear, non-overlapping purposes. No two tools could be confused for the same action.
Naming Consistency5/5
All tool names consistently follow the verb_noun pattern with lowercase underscores, e.g., 'create_list', 'delete_item', 'list_shopping_lists'. No mixing of styles.
Tool Count5/5
With 9 tools covering both list-level and item-level operations, the count is well-scoped for a shopping list manager—neither too few nor excessive.
Completeness5/5
The tool set provides full CRUD coverage for lists (create, delete, rename, list) and items (add, delete, mark purchased, update amount, list). No obvious gaps for basic shopping list management.
Maintenance
ActivityInactive
ResponsivenessNo issues