Metadata-Version: 2.4
Name: brewfyi
Version: 0.1.0
Summary: Coffee knowledge API client — search coffee varieties, brew methods, and terms from BrewFYI.
Project-URL: Homepage, https://brewfyi.com
Project-URL: Documentation, https://brewfyi.com/developers/
Project-URL: Repository, https://github.com/fyipedia/brewfyi
Project-URL: Issues, https://github.com/fyipedia/brewfyi/issues
Project-URL: Changelog, https://github.com/fyipedia/brewfyi/releases
Author: FYIPedia
License-Expression: MIT
License-File: LICENSE
Keywords: arabica,barista,brewing,coffee,espresso,latte,pour-over,roasting,robusta,specialty-coffee
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.10
Provides-Extra: all
Requires-Dist: httpx>=0.27; extra == 'all'
Requires-Dist: mcp>=1.0; extra == 'all'
Requires-Dist: rich>=13.0; extra == 'all'
Requires-Dist: typer>=0.15; extra == 'all'
Provides-Extra: api
Requires-Dist: httpx>=0.27; extra == 'api'
Provides-Extra: cli
Requires-Dist: rich>=13.0; extra == 'cli'
Requires-Dist: typer>=0.15; extra == 'cli'
Provides-Extra: mcp
Requires-Dist: mcp>=1.0; extra == 'mcp'
Description-Content-Type: text/markdown

# brewfyi

Coffee knowledge API client for developers — search coffee varieties, brew methods, and terms from [BrewFYI](https://brewfyi.com).

## Install

```bash
pip install brewfyi[api]     # API client (httpx)
pip install brewfyi[cli]     # + CLI (typer, rich)
pip install brewfyi[mcp]     # + MCP server
pip install brewfyi[all]     # Everything
```

## Quick Start

```python
from brewfyi.api import BrewFYI

with BrewFYI() as api:
    results = api.search("espresso")
    print(results)
```

## CLI

```bash
brewfyi search "espresso"
brewfyi search "pour over"
brewfyi search "arabica"
```

## MCP Server

```bash
# Add to Claude Desktop config
python -m brewfyi.mcp_server
```

Tools: `coffee_search`

## API Endpoints

| Method | Endpoint | Description |
|--------|----------|-------------|
| `search(query)` | `GET /api/search/?q=...` | Search varieties, methods, terms |

## Links

- [BrewFYI](https://brewfyi.com) — Coffee encyclopedia with varieties, brew methods, and origins
- [PyPI](https://pypi.org/project/brewfyi/)
- [GitHub](https://github.com/fyipedia/brewfyi)
- [FYIPedia](https://fyipedia.com) — Open-source developer tools ecosystem
