Skip to main content
Glama
jhliberty

Basecamp MCP Server

by jhliberty

delete_webhook

Remove a specific webhook from a Basecamp project by providing the project ID and webhook ID, enabling streamlined integration management.

Instructions

Delete a webhook

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYesProject ID
webhook_idYesWebhook ID

Implementation Reference

  • The core handler function that performs the DELETE API call to remove the specified webhook from the Basecamp project.
    async deleteWebhook(projectId: string, webhookId: string): Promise<void> {
      await this.client.delete(`/buckets/${projectId}/webhooks/${webhookId}.json`);
    }
  • src/index.ts:500-510 (registration)
    Registers the 'delete_webhook' tool in the MCP initialize response, including its description and input schema for validation.
      name: 'delete_webhook',
      description: 'Delete a webhook',
      inputSchema: {
        type: 'object',
        properties: {
          project_id: { type: 'string', description: 'Project ID' },
          webhook_id: { type: 'string', description: 'Webhook ID' },
        },
        required: ['project_id', 'webhook_id'],
      },
    },
  • Defines the input schema for the delete_webhook tool, specifying required project_id and webhook_id parameters.
    inputSchema: {
      type: 'object',
      properties: {
        project_id: { type: 'string', description: 'Project ID' },
        webhook_id: { type: 'string', description: 'Webhook ID' },
      },
      required: ['project_id', 'webhook_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/jhliberty/basecamp-mcp-server'

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