Metadata-Version: 2.4
Name: xluxx
Version: 0.3.2
Summary: XLUXX Trust Layer - runtime trust scores for MCP tools. Makes AI agents reliable.
Author-email: XLUXX <hello@xluxx.net>
License: MIT
Project-URL: Homepage, https://xluxx.net
Project-URL: API, https://api.xluxx.net
Project-URL: GitHub, https://github.com/DrDMT-VR/xluxx-trust
Keywords: mcp,ai-agents,trust,reliability,tool-selection,model-context-protocol
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# XLUXX Trust Layer

Runtime trust scores for MCP tools. Makes AI agents reliable.

## Install

```bash
pip install xluxx
```

## Usage

```python
from xluxx import TrustLayer

trust = TrustLayer()
result = trust.resolve("search the web")
print(result.best_server)    # "brave-search"
print(result.confidence)     # 0.985
```

## API: https://api.xluxx.net
## Docs: https://github.com/DrDMT-VR/xluxx-trust
