Back

Tool Execution

{% if status.error %}
Error: {{ status.error }}
{% endif %} {% if not status.connected %}
Not Connected: Please connect to an MCP server first.
{% endif %}
{{ tool.name }} 🔧 tool
{{ tool.description or 'No description available for this tool.' }}
Parameters
{% if tool.parameters %} {% for param in tool.parameters %}
{% if param.type == 'boolean' %} {% elif param.type in ['integer', 'number'] %} {% elif param.type in ['array', 'object'] %} {% else %} {% endif %}
{{ param.type }} — {{ param.description or 'No description' }}
{% endfor %} {% else %}
This tool takes no parameters
{% endif %}