delete_v1_team_files_workspace_filename
DeleteBlob removes one blob from a workspace's file store.
DeleteBlob removes one blob from a workspace's file store. The caller must hold a verified session AND be a member of the workspace; anything else — an unknown workspace, another tenant's workspace, a workspace the caller is not in — answers the same 404, so a probe learns nothing about what exists.
It is IDEMPOTENT: deleting a present or an absent blob both answer 204, so a delete never confirms a blob's existence and a foreign blob id (a physical key the caller can never name into another tenant's box) is a harmless no-op. A storage backend that is unavailable fails closed with 502 rather than lying about success.
| Tool | delete_v1_team_files_workspace_filename |
| Door | https://api.hanzo.ai/v1/mcp |
| Method | tools/call (JSON-RPC 2.0) |
| Arguments | 3, 2 required |
| Operation | DELETE /v1/team/files/{workspace}/{filename} |
| Product | team |
Arguments
| Field | Type | Required | Default | Values | Description |
|---|---|---|---|---|---|
file | string | — | — | — | File is the blob id, and wins over the path segment when both are present. |
filename | string | yes | — | — | Filename is the last path segment, which the front sets to the blob id when it sends no explicit file. |
workspace | string | yes | — | — | Workspace is the workspace uuid the blob belongs to, from the path. |
tools/list declares a type and a description for each field and nothing further. The Required column is taken from DELETE /v1/team/files/{workspace}/{filename}, the operation this tool dispatches to — the same declaration the REST API validates against. A — means neither the door nor that operation constrains the field.
Call it
A tools/call carries every argument in one flat object — nothing binds to a path or a query string. This call carries exactly the arguments the operation requires, so it is the smallest one that can run.
curl -X POST https://api.hanzo.ai/v1/mcp \
-H "Authorization: Bearer $HANZO_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "delete_v1_team_files_workspace_filename",
"arguments": {
"filename": "<filename>",
"workspace": "<workspace>"
}
}
}'Values are the operation's own defaults and enumerated values where it declares them, and a <placeholder> where neither source declares one. tools/list needs no credential; tools/call does — called without one the door answers HTTP 200 with a JSON-RPC result whose isError is set and whose text says what was missing. How to get a key →
The operation behind it
| Operation | Route | Product | Summary |
|---|---|---|---|
delete_v1_team_files_workspace_filename | DELETE /v1/team/files/{workspace}/{filename} | team | Removes one blob from a workspace's file store. |
The same capability over plain HTTP is in the team API reference, on https://api.hanzo.ai.
All 755 tools · The door · API reference
Generated from tools/list on https://api.hanzo.ai/v1/mcp — 833 tools captured 2026-08-01, of which 755 are documented here (the operator surface is not published) (this build read the vendored copy; the door was unreachable).
How is this guide?