Google Cloud Inventory / warm
List Firewall Rules
List VPC firewall rules for an allowed project. Read-only network-admission inventory.
Quick Start
aweb inspect gcp_inventory.list_firewall_rules
aweb add gcp_inventory
aweb plan "use Google Cloud Inventory list firewall rules 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('gcp_inventory');
const plan = await agent.plan('Use Google Cloud Inventory for this workflow');
const tool = await aweb.tools.inspect('gcp_inventory.list_firewall_rules');
console.log(plan.nextAction);
console.log(tool.inputSchema);Tool Card
Tool idgcp_inventory.list_firewall_rules
ProviderGoogle Cloud Inventory (gcp_inventory)
Tool namelist_firewall_rules
Activationwarm
Healthhealthy
Trust score1.00
Transportstreamable_http
Latencynot yet measured
Cost0
Requirements and Governance
Authstatic_fields
Credentialsetup_required
Workspaceglobal
Approvalnone
RiskREAD
Permissionsread
Credential setup/api/mcp-warehouse/credentials/gcp_inventory/init
Schemas
{
"type": "object",
"properties": {
"projectId": {
"type": "string",
"description": "Optional Google Cloud project id. Must be in the allowed-project list."
},
"network": {
"type": "string",
"description": "Optional VPC network filter. Accepts bare network name or full network resource URL."
},
"direction": {
"type": "string",
"description": "Optional direction filter. Accepts INGRESS or EGRESS."
},
"namePrefix": {
"type": "string",
"description": "Optional firewall-rule name prefix filter applied client-side."
},
"exactName": {
"type": "string",
"description": "Optional exact firewall-rule name filter applied client-side."
},
"limit": {
"type": "integer",
"description": "Maximum firewall rules to return (default 100, max 500)."
}
},
"additionalProperties": false
}Examples
[
{
"objective": "Use Google Cloud Inventory list firewall rules in an agent workflow.",
"args": {
"projectId": "<projectId>",
"network": "<network>",
"direction": "<direction>",
"namePrefix": "<namePrefix>"
}
}
]