Skip to main content
Glama

Delete Quote

whmcs_delete_quote

Delete a quote from WHMCS by specifying its quote ID.

Instructions

Delete a quote

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
quoteidYesQuote ID

Implementation Reference

  • src/index.ts:1291-1306 (registration)
    Tool registration for whmcs_delete_quote. Defines the tool name, description, input schema (quoteid number), and calls whmcsClient.deleteQuote(params).
    server.registerTool(
        'whmcs_delete_quote',
        {
            title: 'Delete Quote',
            description: 'Delete a quote',
            inputSchema: {
                quoteid: z.number().describe('Quote ID'),
            },
        },
        async (params) => {
            const result = await whmcsClient.deleteQuote(params);
            return {
                content: [{ type: 'text', text: JSON.stringify(result, null, 2) }],
            };
        }
    );
  • Input schema for whmcs_delete_quote: requires a single 'quoteid' parameter of type number.
    inputSchema: {
        quoteid: z.number().describe('Quote ID'),
    },
  • Handler/implementation of deleteQuote on the WhmcsApiClient class. Calls the WHMCS API 'DeleteQuote' action with the quoteid parameter.
    async deleteQuote(params: { quoteid: number }) {
        return this.call<WhmcsApiResponse>('DeleteQuote', params);
    }
Behavior1/5

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

No annotations provided. Description does not disclose any behavioral traits such as irreversibility, required permissions, or impact on related data. For a delete operation, this is a critical gap.

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

Conciseness4/5

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

Extremely concise, one sentence with no fluff. However, it could be slightly expanded to include critical context without losing conciseness.

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

Completeness2/5

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

For a delete tool with no output schema and no annotations, the description fails to mention that deletion is irreversible or that the quote must exist. The context is insufficient for safe usage.

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 coverage is 100% with parameter 'quoteid' described as 'Quote ID'. The description adds no further meaning beyond the schema, so baseline score of 3 is appropriate.

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?

Description 'Delete a quote' uses a clear verb+resource structure. It distinguishes from sibling tools like whmcs_delete_client or whmcs_delete_order by specifying the target is a quote.

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

Usage Guidelines2/5

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

No guidance on when to use this tool vs alternatives like whmcs_accept_quote or whmcs_create_quote. No prerequisites or conditions for deletion are mentioned.

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

Install Server

Other Tools

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/scarecr0w12/whmcs-mcp-tool'

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