Skip to main content
Glama
strzhao

assets-store-mcp

by strzhao

assets_delete

Remove one or more assets from your personal store by providing their Vercel Blob URLs. Clears unwanted files to keep your storage organized.

Instructions

Delete one or more assets from your personal assets store

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlsYesArray of Vercel Blob URLs to delete

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

A3.7/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only says 'Delete' — it does not mention that deletion is permanent, how missing or invalid URLs are handled, what the response looks like, or any permissions or side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence with no filler. Every word contributes to understanding the tool's scope and operation.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, with one fully documented required parameter, so the description is adequate for basic invocation. However, with no annotations and no output schema, it omits important behavioral context such as permanence of deletion, error handling for invalid URLs, and return behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents that 'urls' is an array of Vercel Blob URLs to delete. The tool description adds no further parameter-level meaning, but the baseline of 3 applies because the schema is self-sufficient.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb ('Delete'), a clear resource ('assets'), and a scope ('your personal assets store'). This cleanly distinguishes it from siblings like assets_upload, assets_list, and assets_copy.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'Delete one or more assets from your personal assets store' provides clear context for when to use the tool. It does not explicitly name alternative tools or exclusions, but the operation is unambiguous among the sibling set.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.