Name | split-screen-mac-test-mcp JSON |
Version |
1.2.0
JSON |
| download |
home_page | None |
Summary | Model Context Protocol Server for macOS Split Screen Window Management |
upload_time | 2025-08-22 03:22:50 |
maintainer | None |
docs_url | None |
author | Beta |
requires_python | >=3.9 |
license | MIT License
Copyright (c) 2024 Split Screen macOS MCP Server
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 NONINFRINGEMENT. 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. |
keywords |
desktop-productivity
macos
mcp
split-screen
tiling
window-management
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
# Split Screen macOS MCP Server
Model Context Protocol server that exposes macOS split-screen window management tools. This server provides the same functionality as the original `split-screen-mac-test` project but wrapped in an MCP server for AI client integration.
## Features
- **macOS Native**: Uses PyObjC frameworks for robust window management
- **Split-screen layouts**: Halves, quadrants, thirds, and two-thirds variations
- **Window controls**: Maximize, minimize, and fullscreen
- **MCP integration**: Full Model Context Protocol server support
- **Accessibility APIs**: Leverages macOS Accessibility framework for reliable window manipulation
## Install / Run via MCP client
### Installation
```bash
pip install split-screen-mac-test-mcp
```
**Note**: PyObjC dependencies are automatically installed only on macOS systems.
Configure your MCP client:
```json
{
"mcpServers": {
"split-screen-mac-test": {
"command": "uvx",
"args": ["split-screen-mac-test-mcp"],
"env": {}
}
}
}
```
## Available Tools
### Half-screen layouts
- `left-half-screen` - Snap current window to left half
- `right-half-screen` - Snap current window to right half
- `top-half-screen` - Snap current window to top half
- `bottom-half-screen` - Snap current window to bottom half
### Quadrant layouts
- `top-left-screen` - Top-left quadrant
- `top-right-screen` - Top-right quadrant
- `bottom-left-screen` - Bottom-left quadrant
- `bottom-right-screen` - Bottom-right quadrant
### Third layouts
- `left-one-third-screen` - Left third (1/3)
- `middle-one-third-screen` - Middle third (1/3)
- `right-one-third-screen` - Right third (1/3)
### Two-thirds layouts
- `left-two-thirds-screen` - Left two-thirds (2/3)
- `right-two-thirds-screen` - Right two-thirds (2/3)
### Window controls
- `maximize-screen` - Maximize to visible frame (respects Dock & menu bar)
- `fullscreen-screen` - Native macOS fullscreen mode
- `minimize-screen` - Minimize window to Dock
## Technical Details
This MCP server is built using:
- **PyObjC**: For macOS framework access
- **AppKit**: Screen and workspace management
- **Quartz**: Event handling and accessibility
- **ApplicationServices**: Accessibility APIs
- **MCP**: Model Context Protocol server framework
## Dependencies
- **Core**: Python 3.9+, `mcp>=0.1.0`
- **macOS (Automatic)**:
- `pyobjc-framework-AppKit>=9.0` (only on macOS)
- `pyobjc-framework-Quartz>=9.0` (only on macOS)
- `pyobjc-framework-ApplicationServices>=9.0` (only on macOS)
## Future Plans
This package is designed with cross-platform support in mind:
- **Current**: macOS with automatic PyObjC dependency installation
- **Future**: Windows support with pywin32 (will be added with similar platform markers)
- **Smart**: Dependencies automatically install based on the target platform
## Development
The server is built from the original `split-screen-mac-test` project, which served as a testing environment for the window management logic. The core functionality has been extracted into the MCP server format while maintaining all the robust macOS-specific features.
## License
MIT License - see LICENSE file for details.
Raw data
{
"_id": null,
"home_page": null,
"name": "split-screen-mac-test-mcp",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "desktop-productivity, macos, mcp, split-screen, tiling, window-management",
"author": "Beta",
"author_email": null,
"download_url": "https://files.pythonhosted.org/packages/41/d7/e89cc3dd8e1b4b4945272b4d3f6b5fef1b94bad9540ec9e4322b73693cb4/split_screen_mac_test_mcp-1.2.0.tar.gz",
"platform": null,
"description": "# Split Screen macOS MCP Server\n\nModel Context Protocol server that exposes macOS split-screen window management tools. This server provides the same functionality as the original `split-screen-mac-test` project but wrapped in an MCP server for AI client integration.\n\n## Features\n\n- **macOS Native**: Uses PyObjC frameworks for robust window management\n- **Split-screen layouts**: Halves, quadrants, thirds, and two-thirds variations\n- **Window controls**: Maximize, minimize, and fullscreen\n- **MCP integration**: Full Model Context Protocol server support\n- **Accessibility APIs**: Leverages macOS Accessibility framework for reliable window manipulation\n\n## Install / Run via MCP client\n\n### Installation\n```bash\npip install split-screen-mac-test-mcp\n```\n\n**Note**: PyObjC dependencies are automatically installed only on macOS systems.\n\nConfigure your MCP client:\n\n```json\n{\n \"mcpServers\": {\n \"split-screen-mac-test\": {\n \"command\": \"uvx\",\n \"args\": [\"split-screen-mac-test-mcp\"],\n \"env\": {}\n }\n }\n}\n```\n\n## Available Tools\n\n### Half-screen layouts\n- `left-half-screen` - Snap current window to left half\n- `right-half-screen` - Snap current window to right half\n- `top-half-screen` - Snap current window to top half\n- `bottom-half-screen` - Snap current window to bottom half\n\n### Quadrant layouts\n- `top-left-screen` - Top-left quadrant\n- `top-right-screen` - Top-right quadrant\n- `bottom-left-screen` - Bottom-left quadrant\n- `bottom-right-screen` - Bottom-right quadrant\n\n### Third layouts\n- `left-one-third-screen` - Left third (1/3)\n- `middle-one-third-screen` - Middle third (1/3)\n- `right-one-third-screen` - Right third (1/3)\n\n### Two-thirds layouts\n- `left-two-thirds-screen` - Left two-thirds (2/3)\n- `right-two-thirds-screen` - Right two-thirds (2/3)\n\n### Window controls\n- `maximize-screen` - Maximize to visible frame (respects Dock & menu bar)\n- `fullscreen-screen` - Native macOS fullscreen mode\n- `minimize-screen` - Minimize window to Dock\n\n## Technical Details\n\nThis MCP server is built using:\n- **PyObjC**: For macOS framework access\n- **AppKit**: Screen and workspace management\n- **Quartz**: Event handling and accessibility\n- **ApplicationServices**: Accessibility APIs\n- **MCP**: Model Context Protocol server framework\n\n## Dependencies\n\n- **Core**: Python 3.9+, `mcp>=0.1.0`\n- **macOS (Automatic)**: \n - `pyobjc-framework-AppKit>=9.0` (only on macOS)\n - `pyobjc-framework-Quartz>=9.0` (only on macOS)\n - `pyobjc-framework-ApplicationServices>=9.0` (only on macOS)\n\n## Future Plans\n\nThis package is designed with cross-platform support in mind:\n- **Current**: macOS with automatic PyObjC dependency installation\n- **Future**: Windows support with pywin32 (will be added with similar platform markers)\n- **Smart**: Dependencies automatically install based on the target platform\n\n## Development\n\nThe server is built from the original `split-screen-mac-test` project, which served as a testing environment for the window management logic. The core functionality has been extracted into the MCP server format while maintaining all the robust macOS-specific features.\n\n## License\n\nMIT License - see LICENSE file for details.\n",
"bugtrack_url": null,
"license": "MIT License\n \n Copyright (c) 2024 Split Screen macOS MCP Server\n \n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n \n The above copyright notice and this permission notice shall be included in all\n copies or substantial portions of the Software.\n \n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n SOFTWARE.",
"summary": "Model Context Protocol Server for macOS Split Screen Window Management",
"version": "1.2.0",
"project_urls": null,
"split_keywords": [
"desktop-productivity",
" macos",
" mcp",
" split-screen",
" tiling",
" window-management"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "8562abaaa043f3535df59dc728db7a5ee0b0da89715807b51999326a8d533947",
"md5": "04a8b595e3fcb3976ee0aeb7315777cb",
"sha256": "b21b80973233cf60731498df946e1ee8b154c1981fc3d181bcbf49faecc71bc7"
},
"downloads": -1,
"filename": "split_screen_mac_test_mcp-1.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "04a8b595e3fcb3976ee0aeb7315777cb",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 9433,
"upload_time": "2025-08-22T03:22:49",
"upload_time_iso_8601": "2025-08-22T03:22:49.427275Z",
"url": "https://files.pythonhosted.org/packages/85/62/abaaa043f3535df59dc728db7a5ee0b0da89715807b51999326a8d533947/split_screen_mac_test_mcp-1.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "41d7e89cc3dd8e1b4b4945272b4d3f6b5fef1b94bad9540ec9e4322b73693cb4",
"md5": "301bb5ebf2fa04d5cd5145cbac81e580",
"sha256": "b26aa0568228d29a5a06502260ec8b7fda513932bb75c3d716c9312988021f3f"
},
"downloads": -1,
"filename": "split_screen_mac_test_mcp-1.2.0.tar.gz",
"has_sig": false,
"md5_digest": "301bb5ebf2fa04d5cd5145cbac81e580",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 7137,
"upload_time": "2025-08-22T03:22:50",
"upload_time_iso_8601": "2025-08-22T03:22:50.476641Z",
"url": "https://files.pythonhosted.org/packages/41/d7/e89cc3dd8e1b4b4945272b4d3f6b5fef1b94bad9540ec9e4322b73693cb4/split_screen_mac_test_mcp-1.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-22 03:22:50",
"github": false,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"lcname": "split-screen-mac-test-mcp"
}