start_tomcat
Launch and manage Tomcat server processes using Gradle commands in a specified working directory for Gradle-based applications within the Gradle Tomcat MCP Server.
Instructions
Launch Tomcat via Gradle
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| gradle_command | No | Gradle command to run (default: appRun) | appRun |
| working_directory | No | Working directory for the Gradle command |
Input Schema (JSON Schema)
{
"properties": {
"gradle_command": {
"default": "appRun",
"description": "Gradle command to run (default: appRun)",
"type": "string"
},
"working_directory": {
"description": "Working directory for the Gradle command",
"type": "string"
}
},
"type": "object"
}