| 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 |
Type: object
Schema: <code>{ "type": "object", "properties": { } }</code>
| Property | Type | Description |
|---|---|---|
drives | array | Drive names |
This tool can be called via the MCP (Model Context Protocol) endpoint. Here are examples of how to use it:
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 -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"
}
}
}'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)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));{
"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" }
}
}
}
}