Grafana / warm
List Datasources
List datasources configured in Grafana.
Quick Start
aweb inspect grafana.list_datasources
aweb add grafana
aweb plan "use Grafana list datasources in an agent workflow"import Aweb, { Agent } from '@aweb/sdk';
const aweb = new Aweb({ apiKey: process.env.AWEB_API_KEY });
const agent = new Agent({ tools: aweb.tools });
agent.add('grafana');
const plan = await agent.plan('Use Grafana for this workflow');
const tool = await aweb.tools.inspect('grafana.list_datasources');
console.log(plan.nextAction);
console.log(tool.inputSchema);Tool Card
Tool idgrafana.list_datasources
ProviderGrafana (grafana)
Tool namelist_datasources
Activationwarm
Healthhealthy
Trust score1.00
Transportstreamable_http
Latencynot yet measured
Costunknown
Requirements and Governance
Authstatic_fields
Credentialsetup_required
Workspaceglobal
Approvalnone
RiskREAD
Permissionsread
Credential setup/api/mcp-warehouse/credentials/grafana/init
Schemas
{
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "Optional datasource type filter."
},
"limit": {
"type": "integer",
"description": "Maximum result count (default 100, max 500)."
}
},
"additionalProperties": false
}Examples
[
{
"objective": "Use Grafana list datasources in an agent workflow.",
"args": {
"type": "<type>",
"limit": "<limit>"
}
}
]