get_business_profile
Retrieve WhatsApp Business profile details including about text, address, description, email, websites, and profile picture for account management.
Instructions
Get the WhatsApp Business profile (about, address, description, email, websites, profile picture).
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/whatsapp-client.ts:246-250 (handler)The handler function that executes the request to retrieve the WhatsApp business profile.
async getBusinessProfile() { return this.request( `/${this.config.phoneNumberId}/whatsapp_business_profile?fields=about,address,description,email,profile_picture_url,websites,vertical` ); } - src/index.ts:341-349 (registration)Registration of the get_business_profile MCP tool.
server.tool( "get_business_profile", "Get the WhatsApp Business profile (about, address, description, email, websites, profile picture).", {}, async () => executeWithHooks("get_business_profile", {}, config, () => wa.getBusinessProfile() ) );