Add optional caption parameter to send_file#200
Open
CaceresCallieri wants to merge 1 commit intolharries:mainfrom
Open
Add optional caption parameter to send_file#200CaceresCallieri wants to merge 1 commit intolharries:mainfrom
CaceresCallieri wants to merge 1 commit intolharries:mainfrom
Conversation
The Go bridge already supports captions on ImageMessage, VideoMessage, and DocumentMessage via the message field in the REST API payload, but the Python MCP layer did not expose this. Add an optional caption parameter to send_file in both the MCP tool definition and the underlying whatsapp module. The caption is passed as the message field in the REST payload, which the Go bridge uses to populate the Caption proto field. This allows captions to appear attached to images and videos in WhatsApp, instead of requiring a separate text message.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The Go bridge already supports captions on media messages (
ImageMessage,VideoMessage,DocumentMessage) via themessagefield in the REST API payload, but the Python MCP layer doesn't expose this to the agent.This adds an optional
captionparameter tosend_fileso captions appear attached to images/videos in WhatsApp, instead of requiring a separate text message.Changes
captionparameter (default"") tosend_file()inwhatsapp.pycaptionparameter to the MCP tool definition inmain.pymessagein the REST payload (which the Go bridge already uses forCaption)Test plan
send_file— caption appears attached to the image in WhatsApp