Metadata-Version: 2.3
Name: hanzo-mcp-client
Version: 0.1.0
Summary: MCP (Model Context Protocol) client library for Hanzo Dev
License: MIT
Author: Hanzo Industries Inc
Author-email: dev@hanzo.ai
Requires-Python: >=3.12,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: fastmcp (>=2.5.2)
Requires-Dist: mcp (>=1.9.4)
Requires-Dist: pydantic (>=2.11.1,<3.0.0)
Description-Content-Type: text/markdown

# Hanzo MCP Client

MCP (Model Context Protocol) client library for connecting to MCP servers.

This library provides the client-side implementation for connecting to MCP servers and using their tools.

## Installation

```bash
pip install hanzo-mcp-client
```

## Usage

```python
from hanzo_mcp_client import MCPClient, add_mcp_tools_to_agent

# Create a client
client = MCPClient()

# Connect to an MCP server
await client.connect("stdio", command="hanzo-mcp")

# List available tools
tools = await client.list_tools()
```
