Metadata-Version: 2.4
Name: tethr-engine
Version: 0.1.0
Summary: Standalone identity engine — REST API, memory, and pattern extraction
Author: Jeff Draper
License-Expression: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi
Requires-Dist: uvicorn[standard]
Requires-Dist: pydantic
Requires-Dist: groq
Requires-Dist: pyyaml
Requires-Dist: python-jose[cryptography]
Requires-Dist: bcrypt
Requires-Dist: requests
Requires-Dist: mcp
Requires-Dist: sentence-transformers
Requires-Dist: psutil>=5.9.0
Requires-Dist: watchdog
Dynamic: license-file

# tethr-engine

Standalone identity and memory engine. Runs a local REST API server that tracks behavioral patterns, manages long-term memory, and provides an LLM-ready identity context layer.

## Install

```
pip install tethr-engine
```

## Usage

```
tethr start            # start server on localhost:8001
tethr start --host 0.0.0.0   # network accessible
tethr start --reload   # dev mode with auto-reload
tethr status           # check health
tethr version          # print version
```

On first run, `tethr start` will prompt for a Groq API key and create `config.yaml` in the working directory. `config.yaml` is never included in the package.

## MCP Server

```
python -m tethr_engine.mcp_server
```

## License

MIT — Jeff Draper 2026
