get_scenario_list
Retrieve pre-configured application scenarios for deployment tasks. Start by calling this function to obtain a list of scenarios with server and job paths, enabling streamlined CI/CD workflows on Jenkins MCP Tool.
Instructions
Get all available application scenarios - the preferred entry point for deployment tasks.
Important: For any deployment-related task, this function should be called first instead of directly using search_jobs.
This function returns a pre-configured scenario list, each containing the correct server and job path configuration.
Returns:
List of scenarios, each containing:
- index: Scenario index (string)
- name: Scenario name
- description: Scenario description
- server: Jenkins server name
- job_path: Job path
Workflow:
1. Call this function to get the scenario list
2. Let the user select a scenario
3. Use search_jobs_by_scenario(scenario) to get the specific job
4. Use trigger_build() to execute deployment
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Input Schema (JSON Schema)
{
"properties": {},
"title": "get_scenario_listArguments",
"type": "object"
}