Metadata-Version: 2.4
Name: naturalpay
Version: 0.0.1
Summary: Natural Payments SDK - AI agent payment infrastructure
Keywords: payments,ai,agents,mcp,llm
Author: Natural
Author-email: Natural <eng@natural.co>
License-Expression: MIT
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.12
Project-URL: Documentation, https://docs.natural.co
Project-URL: Homepage, https://natural.co
Project-URL: Repository, https://github.com/natural-co/naturalpay-python
Description-Content-Type: text/markdown

# naturalpay

Natural Payments SDK - AI agent payment infrastructure.

## Installation

```bash
pip install naturalpay
# or
uv add naturalpay
```

## Quick Start

```python
from naturalpay import NaturalClient

client = NaturalClient(api_key="pk_sandbox_xxx")

# Create a payment
payment = await client.payments.create(
    recipient_email="alice@example.com",
    amount=50.00,
    memo="For consulting"
)

print(payment.transfer_id)  # txn_abc123
```

## MCP Server

Run the MCP server for AI agent integrations:

```bash
naturalpay mcp serve
```

## Documentation

- [API Reference](https://docs.natural.co)
- [Examples](https://github.com/natural-co/natural-examples)

## License

MIT
