setup_remote
Configure a GitHub remote repository for an existing local TOYBOX project, including optional private settings and GitHub Pages activation, using the TOYBOX MCP Server.
Instructions
Set up a GitHub remote repository for an existing local TOYBOX (one-time setup)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
enablePages | No | Enable GitHub Pages for the repository (default: true) | |
isPrivate | No | Create repository as private (default: false) | |
repoName | Yes | Name for the GitHub repository |
Input Schema (JSON Schema)
{
"properties": {
"enablePages": {
"default": true,
"description": "Enable GitHub Pages for the repository (default: true)",
"type": "boolean"
},
"isPrivate": {
"default": false,
"description": "Create repository as private (default: false)",
"type": "boolean"
},
"repoName": {
"description": "Name for the GitHub repository",
"type": "string"
}
},
"required": [
"repoName"
],
"type": "object"
}