| Actions | S. No. | Tool ID | Source | Name | Request Type | Description | Annotations | Tags | Owner | Team | Status |
|---|---|---|---|---|---|---|---|---|---|---|---|
|
{% if can_modify %}
{% if tool.enabled %} {% else %} {% endif %} {% endif %} |
{{ (pagination.page - 1) * pagination.per_page + loop.index }} | {{ tool.id }} |
{{ tool.gatewaySlug }}
{{ tool.url }}
|
{{ tool.name }}
{% if tool.title %}
{{ tool.title }}
{% endif %}
|
{{ tool.requestType }} | {% set clean_desc = (tool.description or "") | decode_html | replace('\n', ' ') | replace('\r', ' ') %} {% set refactor_desc = clean_desc | striptags | trim %} {% if refactor_desc | length is greaterthan 220 %} {{ refactor_desc[:400] + "..." }} {% else %} {{ refactor_desc }} {% endif %} | {% if tool.annotations %} {% if tool.annotations.readOnlyHint %} 📖 {% endif %} {% if tool.annotations.destructiveHint %} ⚠️ {% endif %} {% if tool.annotations.idempotentHint %} 🔄 {% endif %} {% if tool.annotations.openWorldHint %} 🌐 {% endif %} {% else %} None {% endif %} | {% if tool.tags %} {% for tag in tool.tags %} {% if tag is mapping %}{{ tag.id }}{% else %}{{ tag }}{% endif %} {% endfor %} {% else %} None {% endif %} | {{ tool.ownerEmail }} | {% if tool.team %}{{ tool.team }}{% else %}None{% endif %} |
{{ tool.integrationType }}
{% if tool.visibility == "public" %}
🌍 Public
{% elif tool.visibility == "team" %}
👥 Team
{% else %}
🔒 Private
{% endif %}
{% set enabled = tool.enabled %}{% set reachable = tool.reachable %}
{% if enabled and reachable %}● Online{% elif enabled %}● Offline{% else %}● Inactive{% endif %}
|