list-network-volumes
Retrieve a list of network volumes from the RunPod MCP Server to manage storage resources for cloud-based applications and AI workloads.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:628-639 (handler)The handler and registration for the 'list-network-volumes' MCP tool. It calls the RunPod API via runpodRequest('/networkvolumes') and returns the JSON response as formatted text content.server.tool('list-network-volumes', {}, async () => { const result = await runpodRequest('/networkvolumes'); return { content: [ { type: 'text', text: JSON.stringify(result, null, 2), }, ], }; });