Metadata-Version: 2.4
Name: rewind-mcp
Version: 0.12.1
Summary: MCP server for Rewind — the time-travel debugger for AI agents.
Project-URL: Homepage, https://github.com/agentoptics/rewind
Project-URL: Documentation, https://github.com/agentoptics/rewind/blob/master/docs/mcp-server.md
Project-URL: Repository, https://github.com/agentoptics/rewind
Project-URL: Issues, https://github.com/agentoptics/rewind/issues
Author: Rewind Contributors
License-Expression: MIT
Keywords: agents,ai,debugging,llm,mcp
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Debuggers
Requires-Python: >=3.9
Description-Content-Type: text/markdown

# rewind-mcp

MCP server for [Rewind](https://github.com/agentoptics/rewind) — the time-travel debugger for AI agents.

This package bootstraps the native `rewind-mcp` binary so AI assistants like **Claude Code**, **Cursor**, and **Windsurf** can query your agent recordings directly.

## Install

```bash
pip install rewind-mcp
```

The native binary is auto-downloaded on first use — no Rust toolchain required.

## Configure

Find the absolute path (IDEs don't inherit your shell PATH):

```bash
which rewind-mcp
```

### Claude Code

Add to `.claude/settings.json`:

```json
{
  "mcpServers": {
    "rewind": {
      "command": "/absolute/path/to/rewind-mcp"
    }
  }
}
```

### Cursor

Add to `.cursor/mcp.json`:

```json
{
  "mcpServers": {
    "rewind": {
      "command": "/absolute/path/to/rewind-mcp"
    }
  }
}
```

Replace `/absolute/path/to/rewind-mcp` with the output of `which rewind-mcp`.

## Full Documentation

See [MCP Server docs](https://github.com/agentoptics/rewind/blob/master/docs/mcp-server.md) for available tools and usage examples.

## License

MIT
