# libtmux_mcp.tools.window_tools.rename_window

- **Module:** libtmux_mcp.tools.window_tools
- **Package:** libtmux-mcp
- **Language:** Python
- **Kind:** function
- **Source:** https://github.com/tmux-python/libtmux-mcp/blob/4daddc0dfca96c43bf521d818bf91564e1434760/src/libtmux_mcp/tools/window_tools.py#L260
- **Page:** https://libtmux.org/en/py/latest/mcp/reference/libtmux_mcp-tools-window_tools-rename_window/

```
libtmux_mcp.tools.window_tools.rename_window(new_name: str, window_id: str | None = None, window_index: str | None = None, session_name: str | None = None, session_id: str | None = None, socket_name: str | None = None) -> WindowInfo
```

Rename a tmux window.

Use when a window's purpose has changed. Existing window_id references
remain valid after renaming.

## Parameters

- `new_name` (str): The new name for the window.
- `window_id` (str | None): Window ID (e.g. '@1').
- `window_index` (str | None): Window index within the session.
- `session_name` (str | None): Session name.
- `session_id` (str | None): Session ID.
- `socket_name` (str | None): tmux socket name.

## Returns

WindowInfo
    Serialized window object.
