Skip to main content
Glama
jhliberty

Basecamp MCP Server

by jhliberty

get_webhooks

Retrieve a list of webhooks associated with a specific project in Basecamp using the MCP server, enabling efficient project integration and management.

Instructions

List webhooks for a project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYesProject ID

Implementation Reference

  • Input schema definition for the 'get_webhooks' MCP tool, defining the required 'project_id' parameter.
      name: 'get_webhooks',
      description: 'List webhooks for a project',
      inputSchema: {
        type: 'object',
        properties: {
          project_id: { type: 'string', description: 'Project ID' },
        },
        required: ['project_id'],
      },
    },
  • Core implementation of fetching webhooks for a given project ID using the Basecamp API client. This method would be called by the MCP tool handler.
    async getWebhooks(projectId: string): Promise<Webhook[]> {
      const response = await this.client.get(`/buckets/${projectId}/webhooks.json`);
      return response.data;
    }

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