Metadata-Version: 2.4
Name: tarsus-mcp
Version: 0.1.0
Summary: MCP Tool Definitions for Tarsus API (Python)
Author-email: Tarsus <support@tarsus.tech>
License: MIT
Requires-Python: >=3.10
Requires-Dist: tarsus-sdk
Description-Content-Type: text/markdown

# Tarsus MCP Tools (Python)

Library of MCP-compatible tool definitions for the Tarsus API.

## Installation

```bash
pip install tarsus-mcp
```

## Usage

```python
from tarsus import TarsusClient
from tarsus_mcp import TarsusTools

# Initialize client
client = TarsusClient(api_key="...")

# Get tools
tools_wrapper = TarsusTools(client)
tools = tools_wrapper.get_all_tools()

for tool in tools:
    print(f"Tool: {tool['name']}")
    # tool['callable'] is the executable function
    # tool['inputSchema'] is the JSON schema
```
