Appearance
Drive
File storage.
6 tools — 3 read, 3 write.
| Tool | What it does | |
|---|---|---|
delete_file | write | Permanently delete a file from Nous Drive. |
get_file_url | read | Get a download URL for a file in Nous Drive. |
list_files | read | List files in Nous Drive for the active organization. |
read_file | read | Read a text-based file from Nous Drive (text/*, application/json, application/xml, application/javascript). |
rename_file | write | Rename a file or move it to a different folder. |
upload_file | write | Upload a small file to Nous Drive inline. |
Calling these
Over MCP, find one with search_tools, then run it with execute_tool. Over REST, POST /api/capabilities/<tool> with the arguments as the JSON body. Either way, fetch the input schema for the tool you're about to call rather than guessing — get_tool_schema over MCP, or GET /api/capabilities?name=<tool> over REST.
See How the API works for auth, errors and the shared envelope.