app_serve
Serve a web application locally on an available port using Goose App Maker MCP. Automatically detects and configures the port, supporting one app at a time for efficient local testing and deployment.
Instructions
Serve an existing web application on a local HTTP server.
The server will automatically find an available port.
Can only serve one app at a time
Args:
app_name: Name of the application to serve
Returns:
A dictionary containing the result of the operation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"app_name": {
"title": "App Name",
"type": "string"
}
},
"required": [
"app_name"
],
"title": "app_serveArguments",
"type": "object"
}