Metadata-Version: 2.4
Name: deploytoagents
Version: 0.1.0
Summary: Python client for the Deploy to Agents remote MCP server
Project-URL: Homepage, https://deploytoagents.com
Project-URL: Repository, https://github.com/saezbaldo/deploytoagents
Project-URL: Documentation, https://deploytoagents.com/llms.txt
Project-URL: Issues, https://github.com/saezbaldo/deploytoagents/issues
Author: We Are 14 Inc
License-Expression: MIT
Keywords: agent-discovery,ai-agents,llm,mcp
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
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
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.10
Requires-Dist: mcp<2,>=1.28
Provides-Extra: test
Requires-Dist: pytest-asyncio>=0.24; extra == 'test'
Requires-Dist: pytest>=8; extra == 'test'
Description-Content-Type: text/markdown

# Deploy to Agents for Python

Official Python client for the public Deploy to Agents Streamable HTTP MCP server.

```bash
pip install deploytoagents
```

```python
import asyncio
from deploytoagents import DeployToAgentsClient

async def main():
    async with DeployToAgentsClient() as client:
        evidence = await client.get_customer_zero_evidence()
        print(evidence["receipt_url"])

asyncio.run(main())
```

The client exposes `audit_app`, `get_audit_result`, `create_distribution_plan`, `get_customer_zero_evidence`, and `list_tools`. Audit receipts for third-party apps are unlisted and noindex by default.
