Tool Details: dlfs_list_drives

Basic Information

Tool Name:dlfs_list_drives
Asset Name:List DLFS Drives
Description:List all DLFS drives owned by the caller. Returns an array of drive names.
Adapter:dlfs
Asset Hash:0x8fcc6ef6332b91afa8d7c0312b637a8148b285ed12d8e35683a75b0b694fc517
Input

Type: object

Schema: <code>{ &quot;type&quot;: &quot;object&quot;, &quot;properties&quot;: { } }</code>

Output
PropertyTypeDescription
drivesarrayDrive names

MCP Tool Usage Examples

This tool can be called via the MCP (Model Context Protocol) endpoint. Here are examples of how to use it:

JSON-RPC Call Example:

POST to https://venue-3.covia.ai/mcp

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "dlfs_list_drives",
    "arguments": {
      "input": "your input here"
    }
  }
}
cURL Example:
curl -X POST https://venue-3.covia.ai/mcp \\
  -H "Content-Type: application/json" \\
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "dlfs_list_drives",
      "arguments": {
        "input": "your input here"
      }
    }
  }'
Python Example:
import requests
import json

url = "https://venue-3.covia.ai/mcp"
payload = {
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
        "name": "dlfs_list_drives",
        "arguments": {
            "input": "your input here"
        }
    }
}

response = requests.post(url, json=payload)
result = response.json()
print(result)
JavaScript/Node.js Example:
const fetch = require('node-fetch');

const url = 'https://venue-3.covia.ai/mcp';
const payload = {
    jsonrpc: '2.0',
    id: 1,
    method: 'tools/call',
    params: {
        name: 'dlfs_list_drives',
        arguments: {
            input: 'your input here'
        }
    }
};

fetch(url, {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json'
    },
    body: JSON.stringify(payload)
})
.then(response => response.json())
.then(data => console.log(data));

Asset Metadata

{
  "name": "List DLFS Drives",
  "description": "List all DLFS drives owned by the caller. Returns an array of drive names.",
  "creator": "Covia",
  "operation": {
    "adapter": "dlfs:listDrives",
    "toolName": "dlfs_list_drives",
    "input": { "type": "object", "properties": {} },
    "output": {
      "type": "object",
      "properties": {
        "drives": { "type": "array", "items": { "type": "string" }, "description": "Drive names" }
      }
    }
  }
}

Navigation

Back to adapter details

Back to all adapters

Back to index