AgentSkillsCN

integration-grafana

通过 AgenCo 可用的 Grafana 操作

SKILL.md
--- frontmatter
name: integration-grafana
description: "Grafana actions available through AgenCo"
user-invocable: false
disable-model-invocation: false

Grafana

Actions available through AgenCo secure gateway. All credentials are stored in the cloud vault — never exposed locally.

Actions

ActionDescription
list_dashboardsRetrieves Grafana dashboards
get_dashboardFetches detailed dashboard information
create_dashboardGenerates new dashboards
delete_dashboardRemoves existing dashboards
list_datasourcesRetrieves available data sources
list_alertsObtains alert rules configured in the system
create_annotationAdds annotations to graphs for documentation

How to Use

Always search first to discover exact tool names and their input schemas, then call the tool.

Step 1: Search for the tool

bash
agenco search-tools '{"queries":["grafana list dashboards"]}'

The response includes toolName (exact name) and inputSchema (required/optional parameters).

Step 2: Call the tool

Use the exact toolName and match the inputSchema from the search results:

bash
agenco call-tool '{"toolName":"<toolName from search>","input":{...}}'

Example

bash
# Find the right tool
agenco search-tools '{"queries":["grafana list dashboards"]}'

# Call it (use the exact toolName and schema from the search result)
agenco call-tool '{"toolName":"grafana_list_dashboards","input":{...}}'

If Grafana is not connected, run agenco list-connected-integrations to check, then connect it via the Shield UI.