Skip to main content
Glama
modellers

ConsignCloud MCP Server

by modellers

delete_item

Remove an inventory item from ConsignCloud by soft deleting it using the item ID. This tool helps manage consignment business operations by clearing unwanted items from inventory.

Instructions

Delete (soft delete) an inventory item

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesItem ID

Implementation Reference

  • MCP tool handler that calls client.deleteItem with the provided item ID and returns success message.
    case 'delete_item': await client.deleteItem((args as any).id); return { content: [{ type: 'text', text: 'Item deleted successfully' }] };
  • src/server.ts:79-89 (registration)
    Registration of the delete_item tool in the tools list used for ListTools response, including description and input schema.
    { name: 'delete_item', description: 'Delete (soft delete) an inventory item', inputSchema: { type: 'object', properties: { id: { type: 'string', description: 'Item ID' }, }, required: ['id'], }, },
  • Core implementation of deleteItem that performs the HTTP DELETE request to the API endpoint `/items/${id}`.
    async deleteItem(id: string): Promise<void> { await this.client.delete(`/items/${id}`); }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/modellers/mcp-consigncloud'

If you have feedback or need assistance with the MCP directory API, please join our Discord server