Azure Toolkit Pack
★Trusted◇Sandbox optionalv1.0.0MITUnverifiedby AgentNode · published 5 months ago · toolpack
Manage Azure cloud resources, VMs, and services.
Interact with Microsoft Azure via the Azure SDK. Manage virtual machines, storage accounts, App Services, Azure Functions, and Cosmos DB.
Quick Start
agentnode install azure-toolkit-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom azure_toolkit_pack.tool import run
result = run(
capability="azure_manage",
params={
"service": "compute",
"action": "list_vms",
"resource_group": "production-rg"
}
)
for vm in result["vms"]:
print(f"{vm['name']} {vm['vm_size']} {vm['status']}")
print(f" OS: {vm['os_type']}")
print(f" IP: {vm['public_ip'] or 'No public IP'}")
print(f" Location: {vm['location']}")Environment Variables
AZURE_SUBSCRIPTION_IDAzure subscription identifier for resource access.
AZURE_CLIENT_IDApplication (client) ID of the Azure AD service principal.
AZURE_CLIENT_SECRETClient secret for the Azure AD service principal.
AZURE_TENANT_IDAzure Active Directory tenant ID.
Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works
Verification
Package installs but has import issues.
Verification failed. This package has issues that prevent it from being installed or imported correctly.
Reason: Tool entrypoint import verification failed
Last verified 8/5/2026· Runner v2.0.0
Use this when you need to...
- ›Provision and manage Azure Virtual Machines
- ›Deploy containers to Azure Container Instances
- ›Manage Azure Blob Storage uploads and downloads
- ›Query Azure SQL databases
- ›Monitor resource health and metrics
README
Version History
Capabilities
Permissions
Declared by the publisher. Checked before execution by the policy gate.
Permissions are policy-checked before execution. For trusted and curated packages that run on the host, network and filesystem access are policy-checked but not OS-sandboxed. When runtime isolation is required for untrusted/community code, AgentNode uses sandbox-or-fail-closed if the required container runtime and pinned image are available. Learn more
Privacy
All tool execution happens locally on your machine. AgentNode never receives:
- • Tool inputs or outputs
- • Execution logs
- • Data your agent processes
Only install events and search queries are sent to the registry.
agentnode install azure-toolkit-packEnvironment Variables
AZURE_SUBSCRIPTION_IDrequiredAZURE_CLIENT_IDrequiredAZURE_CLIENT_SECRETrequiredAZURE_TENANT_IDrequiredFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode