Metadata-Version: 2.4
Name: kronroe-mcp
Version: 0.3.0
Summary: Python CLI wrapper for the kronroe-mcp Rust MCP server
Author-email: Rebekah Cole <becky.cole@kindlyroe.com>
License: AGPL-3.0-only OR Commercial
Project-URL: Homepage, https://kronroe.dev
Project-URL: Repository, https://github.com/kronroe/kronroe
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# kronroe-mcp (Python wrapper)

Python CLI wrapper for the Rust `kronroe-mcp` MCP server.

This wrapper is intentionally thin. The supported MCP runtime is the native
Rust `kronroe-mcp` binary; this package only resolves and launches that binary.

## Install

```bash
pip install kronroe-mcp
```

## Run

```bash
kronroe-mcp
```

The wrapper delegates to the Rust `kronroe-mcp` binary. It resolves binary path by:

1. `KRONROE_MCP_BIN` environment variable
2. `kronroe-mcp` on `PATH`

If not found, install the binary, for example:

```bash
cargo install --path crates/mcp-server
```

## Publish

```bash
cd python/kronroe-mcp
python3 -m pip install --upgrade build twine
python3 -m build

# TestPyPI
TWINE_USERNAME=__token__ \
TWINE_PASSWORD="pypi-your-testpypi-token" \
python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/*

# PyPI
TWINE_USERNAME=__token__ \
TWINE_PASSWORD="pypi-your-pypi-token" \
python3 -m twine upload dist/*
```
