Metadata-Version: 2.5
Name: clauder
Version: 0.1.0
Summary: Connect AI agents to a live Python session (Positron, Jupyter, VS Code, or a bare REPL) over the ClaudeR protocol
Author: Nykko Vitali
License: MIT
Keywords: data-science,jupyter,llm,mcp,positron
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# clauder

Expose a live Python session to MCP-based AI agents. The Python half of
[ClaudeR](https://github.com/IMNMV/ClaudeR).

```python
import clauder
clauder.start()
```

The agent then executes code in this session, where your loaded data and
fitted models already are, and sees the figures it draws. Every line it runs
is logged and attributed. Works in Positron, Jupyter, VS Code, and a bare
REPL.

```python
clauder.start(session_name = "analysis", port = 8790)
clauder.status()
clauder.stop()
```
