create_custom_grid_layout
Design personalized grid layouts (e.g., 3x2, 4x3) for high-resolution displays by specifying columns, rows, and layout names on Moom MCP Server for macOS window management.
Instructions
Create a custom grid layout (e.g., 3x2, 4x3) for high-res displays
Input Schema
Name | Required | Description | Default |
---|---|---|---|
columns | Yes | Number of columns in the grid | |
layoutName | Yes | Name for the grid layout | |
rows | Yes | Number of rows in the grid |
Input Schema (JSON Schema)
{
"properties": {
"columns": {
"description": "Number of columns in the grid",
"type": "integer"
},
"layoutName": {
"description": "Name for the grid layout",
"type": "string"
},
"rows": {
"description": "Number of rows in the grid",
"type": "integer"
}
},
"required": [
"layoutName",
"columns",
"rows"
],
"type": "object"
}