Metadata-Version: 2.4
Name: aria-openai-agents
Version: 1.9.5.15
Summary: ARIA MCP provider for the OpenAI Agents SDK — connect Agents to mcp.aria.simplification.io with one factory call
Author: Simplification.io
License: Proprietary — Simplification.io
Project-URL: Homepage, https://aria.simplification.io/mcp
Project-URL: Documentation, https://docs.simplification.io/integrations/openai-agents-sdk
Project-URL: Source, https://github.com/simplification-io/aria
Project-URL: Bug Tracker, https://github.com/simplification-io/aria/issues
Keywords: aria,mcp,openai,agents,customer-experience
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
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
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: dev
Requires-Dist: pytest<9.0,>=7.4; extra == "dev"

# aria-openai-agents

ARIA MCP provider for the OpenAI Agents SDK (Python). One factory call
connects your Agent to `mcp.aria.simplification.io` — the same 21 tools
and 6 Playbooks Claude Desktop sees, scoped to your org by your ARIA
API key.

## Install

```bash
pip install aria-openai-agents
```

## Usage

```python
from openai_agents import Agent
from aria_openai_agents import aria_mcp_provider

aria = aria_mcp_provider(api_key=os.environ["ARIA_API_KEY"])

agent = Agent(
    name="ARIA customer-experience agent",
    mcp=[aria],
)

result = agent.run("What's the one customer I should call right now?")
```

## Honest hedges

- Bearer-token auth today. OAuth lands in v1.9.5.12.
- Live verification of the hosted MCP endpoint happens post-deploy in
  v1.9.5.15.

## Documentation

- [Quickstart (TypeScript + Python)](https://docs.simplification.io/integrations/openai-agents-sdk)
- [ARIA MCP marketing page](https://aria.simplification.io/mcp)

## License

Proprietary — Simplification.io.
