Skip to main content
Glama
umzcio
by umzcio

tdx-kb-delete

Remove a knowledge base article from TeamDynamix by specifying its ID to delete outdated or incorrect documentation.

Instructions

Delete a TDX knowledge base article

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
appIdNoTDX app ID (defaults to env TDX_APP_ID)
idYesKB article ID

Implementation Reference

  • src/tools/kb.ts:91-107 (registration)
    The 'tdx-kb-delete' tool registration and handler implementation.
    server.tool(
      "tdx-kb-delete",
      "Delete a TDX knowledge base article",
      {
        appId: z.number().optional().describe("TDX app ID (defaults to env TDX_APP_ID)"),
        id: z.number().describe("KB article ID"),
      },
      async (params) => {
        const app = params.appId ?? defaultAppId;
        try {
          await client.delete(`/${app}/knowledgebase/${params.id}`);
          return { content: [{ type: "text", text: "KB article deleted successfully" }] };
        } catch (e: unknown) {
          return { content: [{ type: "text", text: String(e) }], isError: true };
        }
      }
    );

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/umzcio/TeamDynamix-MCP-Connector'

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