Metadata-Version: 2.4
Name: computer-split-screen-mcp
Version: 1.4.0
Summary: Model Context Protocol Server via Cross-Platform (Mac & Windows) Split Screen Functions
Author: Beta
License: MIT License
        
        Copyright (c) 2024 Computer Split Screen MCP
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRECTION. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: cross-platform,desktop-productivity,macos,mcp,pywin32,split-screen,tiling,window-management,windows
Requires-Python: >=3.9
Requires-Dist: mcp>=0.1.0
Provides-Extra: macos
Requires-Dist: pyobjc-core<11,>=10.1; extra == 'macos'
Requires-Dist: pyobjc-framework-applicationservices<11,>=10.1; extra == 'macos'
Requires-Dist: pyobjc-framework-cocoa<11,>=10.1; extra == 'macos'
Requires-Dist: pyobjc-framework-quartz<11,>=10.1; extra == 'macos'
Provides-Extra: windows
Requires-Dist: pywin32>=306; extra == 'windows'
Description-Content-Type: text/markdown

# Computer Split Screen MCP

Cross-platform MCP server that exposes split-screen tools (halves, quadrants, thirds) plus maximize/minimize for both Windows and macOS.  
Works with MCP clients via `uvx`.

## Features

- **Cross-platform support**: Windows and macOS
- **Split-screen layouts**: Halves, quadrants, thirds, and two-thirds variations
- **Window controls**: Maximize and minimize
- **MCP integration**: Full Model Context Protocol server support

## Install / Run via MCP client

Configure your MCP client:

```json
{
  "mcpServers": {
    "computer-split-screen": {
      "command": "uvx",
      "args": ["computer-split-screen-mcp"],
      "env": {}
    }
  }
}
```

## Available Tools

- `left-half` - Snap current window to left half
- `right-half` - Snap current window to right half
- `top-half` - Snap current window to top half
- `bottom-half` - Snap current window to bottom half
- `top-left` - Top-left quadrant
- `top-right` - Top-right quadrant
- `bottom-left` - Bottom-left quadrant
- `bottom-right` - Bottom-right quadrant
- `left-third` - Left third (1/3)
- `middle-third` - Middle third (1/3)
- `right-third` - Right third (1/3)
- `left-two-thirds` - Left two-thirds (2/3)
- `right-two-thirds` - Right two-thirds (2/3)
- `maximize` - OS maximize (bordered)
- `fullscreen` - Fullscreen (no borders via macOS)(bordered via Windows)
- `minimize` - Minimize window

## Platform Dependencies

- **Windows**: Requires `pywin32>=306`
- **macOS**: No additional dependencies required (uses built-in AppleScript)
