get_prompt_template
Retrieve the canonical English prompt template or specific sections for the MCP-Ambari-API server, enabling structured access to Hadoop cluster management guidance.
Instructions
Return the canonical English prompt template (optionally a specific section).
Simplified per project decision: only a single English template file PROMPT_TEMPLATE.md is maintained.
Args: section: (optional) section number or keyword (case-insensitive) e.g. "1", "purpose", "tool map". mode: (optional) if "headings" returns just the list of section headings with numeric indices.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| section | No | ||
| mode | No |
Implementation Reference
- src/mcp_ambari_api/__init__.py:5-8 (registration)The tool named 'get_prompt_template' is listed in the package's __all__ list, indicating it is registered and exported for use by external code or tests. The import from .mcp_main suggests the actual implementation is there, but could not be resolved.__all__ = [ # tools (selective explicit export for tests / external use) 'get_prompt_template' ]