list_project_tasks
Display all available tasks in a Gradle project to help developers identify build operations, run tests, and manage project workflows efficiently.
Instructions
List all tasks available in a Gradle project.
Args: project: Project path (e.g., ':app' or 'lib:module'). Use None, empty string, or ':' for root project. ctx: MCP Context.
Returns: List of available tasks in the project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project | No |
Input Schema (JSON Schema)
{
"properties": {
"project": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null
}
},
"type": "object"
}