← Back to search

@sigvardt/meta-mcp-server

GitHub Actions Scanned 14d ago

The most comprehensive MCP server for Meta Business Suite — 200+ tools across Facebook Pages, Instagram, Threads, Ads Manager, Commerce, Conversions API, and more

npm
? Not scanned yet

Versions

2.1.4latest
May 20, 2026
2.1.3
May 20, 2026
2.1.2
May 20, 2026
2.1.1
May 20, 2026
2.1.0
May 20, 2026

Tools 199

meta_list_custom_audiences
annotations: verified low

Lists custom audiences in a Meta ad account. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - limit (number): Max results (1–100, default 20) - after (string, optional): Pagination cursor Returns audience names, types, size estimates, and delivery status.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_custom_audience
annotations: verified low

Gets details about a specific custom audience. Args: - audience_id (string): Custom audience ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_custom_audience
annotations: verified low

Creates a new custom audience in a Meta ad account. Supported types: - CUSTOM: Website visitors (requires Pixel), app activity, or customer list - ENGAGEMENT: People who engaged with your content - VIDEO: People who watched your videos Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - name (string): Audience name - subtype (string): CUSTOM, ENGAGEMENT, VIDEO, WEBSITE, or APP - description (string, optional): Audience description - customer_file_source (string, optional): For CUSTOM type — USER_PROVIDED_ONLY, PARTNER_PROVIDED_ONLY, BOTH_USER_AND_PARTNER_PROVIDED - retention_days (number, optional): Days to retain audience members (1–180) Returns the new audience ID. Note: Populating the audience with users is a separate step requiring the Audiences API to upload hashed data or configure a rule.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_create_lookalike_audience
annotations: verified low

Creates a lookalike audience based on an existing custom audience or page. Args: - ad_account_id (string): Ad account ID - name (string): Audience name - origin_audience_id (string): Source custom audience ID to base the lookalike on - country (string): ISO 3166-1 alpha-2 country code (e.g., "US", "GB") - ratio (number): Lookalike size as fraction of country population (0.01–0.20, i.e. 1%–20%) Returns the new lookalike audience ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_delete_custom_audience
annotations: verified low

Deletes a custom audience permanently. This cannot be undone. Args: - audience_id (string): Custom audience ID to delete

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_generate_chart
annotations: verified low

Generates a chart image (PNG) from provided data. Uses QuickChart (Chart.js) to render. Perfect for creating visual reports from Meta insights data. The chart is saved as a PNG file that can be inserted into Word docs, presentations, or shared directly. Args: - chart_type (string): 'bar', 'line', 'pie', 'doughnut', 'radar', 'polarArea', 'horizontalBar' - title (string): Chart title - labels (string[]): X-axis labels or pie slice labels - datasets (array): One or more datasets, each with: - label (string): Dataset name (e.g., "Impressions") - data (number[]): Data values matching labels - color (string, optional): CSS color (e.g., "#1877F2", "rgba(24,119,242,0.5)") - width (number): Image width in pixels (default: 800) - height (number): Image height in pixels (default: 400) - output_path (string, optional): Save PNG to this path. If omitted, returns the chart URL. - stacked (boolean, optional): Stack bars/lines (default: false) - show_values (boolean, optional): Display data values on the chart (default: false) Returns: Chart URL or file path. The URL can be opened in a browser or fetched as a PNG. Example datasets for ad performance: labels: ["Mon","Tue","Wed","Thu","Fri"] datasets: [ { label: "Impressions", data: [1200,1800,1500,2100,1900], color: "#1877F2" }, { label: "Clicks", data: [45,62,51,78,65], color: "#42B72A" } ]

readOnlyHint false openWorldHint true idempotentHint true destructiveHint false
meta_generate_comparison_chart
annotations: verified low

Generates a side-by-side comparison chart — perfect for comparing two time periods, two campaigns, or A/B test results. Args: - title (string): Chart title - metrics (string[]): Metric names (y-axis labels) - group_a (object): { label: string, values: number[], color?: string } - group_b (object): { label: string, values: number[], color?: string } - chart_type (string): 'bar' or 'horizontalBar' (default: 'horizontalBar') - width (number): Width in pixels (default: 800) - height (number): Height in pixels (default: 400) - output_path (string, optional): Save PNG to this path Example — comparing two weeks: title: "This Week vs Last Week" metrics: ["Impressions", "Reach", "Clicks", "Spend"] group_a: { label: "Last Week", values: [12000, 8000, 450, 150] } group_b: { label: "This Week", values: [15000, 10500, 620, 185] }

readOnlyHint false openWorldHint true idempotentHint true destructiveHint false
meta_send_conversion_event
annotations: verified low

Sends a server-side conversion event to Meta via the Conversions API. Args: - pixel_id: Meta Pixel ID - event_name: Standard events: Purchase, Lead, AddToCart, CompleteRegistration, ViewContent, Search, InitiateCheckout, AddPaymentInfo, AddToWishlist, Subscribe, StartTrial, Contact, CustomizeProduct, Donate, FindLocation, Schedule, SubmitApplication, PageView. Custom event names also accepted. - event_time: Unix timestamp - event_source_url (optional): URL where conversion happened - user_data: At minimum one of: em (hashed email), ph (hashed phone), fbc, fbp, client_ip_address, client_user_agent, external_id - custom_data (optional): { currency, value, content_name, content_ids, content_type, order_id, num_items } - event_id (optional): For deduplication with browser pixel - action_source: "website", "app", "email", "phone_call", "chat", "physical_store", "system_generated", "business_messaging", "other" - test_event_code (optional): For testing without affecting production data

readOnlyHint false openWorldHint true idempotentHint false destructiveHint false
meta_test_conversion_events
annotations: verified low

Tests CAPI setup by sending a test event that won't affect production data. Same args as meta_send_conversion_event but auto-sets a test_event_code if not provided. Use the test_event_code from Events Manager > Test Events tab.

readOnlyHint false openWorldHint true idempotentHint false destructiveHint false
meta_block_user
annotations: verified low

Blocks or unblocks a user from a Facebook Page. Blocked users cannot post or comment. Args: - page_id (string): Facebook Page ID - user_id (string): User ID to block/unblock - unblock (boolean): If true, unblocks the user instead

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_list_pages
annotations: verified low

Lists all Facebook Pages managed by the authenticated user. IMPORTANT: Call this tool first before any page or Instagram operations — it caches the page access tokens needed for subsequent calls. Returns: - id: Page ID (needed for other tools) - name: Page name - category: Page category - fan_count: Number of likes - followers_count: Number of followers - link: Page URL - instagram_business_account.id: Linked Instagram account ID (if any) Tip: The page tokens are cached automatically. You do not need to manage them manually.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_page
annotations: verified low

Gets detailed information about a specific Facebook Page. Args: - page_id (string): The Facebook Page ID Returns page details including name, category, description, follower counts, and linked Instagram account.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_post
annotations: verified low

Creates a new post on a Facebook Page. Requires: meta_list_pages must be called first to load page tokens. Args: - page_id (string): Facebook Page ID to post to - message (string): Text content of the post - link (string, optional): URL to attach to the post (creates a link preview) - published (boolean, optional): If false, saves as draft. Default true. - scheduled_publish_time (number, optional): Unix timestamp for scheduling (must be 10 min to 30 days in future; published must be false) Returns: Post ID of the created post. Notes: - Maximum post length: ~63,206 characters - Scheduling requires the page to have Page Publishing Authorization

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_get_posts
annotations: verified low

Lists posts from a Facebook Page feed. Requires: meta_list_pages called first to load page tokens. Args: - page_id (string): Facebook Page ID - limit (number): Max posts to return (1–100, default 20) - after (string, optional): Cursor for next page of results Returns: List of posts with message, permalink, created time, and post ID.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_delete_post
annotations: verified low

Deletes a post from a Facebook Page. This action is permanent and cannot be undone. Args: - post_id (string): The post ID to delete (format: {page_id}_{post_id}) - page_id (string): The Page ID (for authentication)

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_create_photo_post
annotations: verified low

Publishes a photo post to a Facebook Page. Args: - page_id (string): Facebook Page ID - url (string): Public URL of the image - caption (string, optional): Photo caption/message - published (boolean): Default true

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_create_video_post
annotations: verified low

Publishes a video post to a Facebook Page. Args: - page_id (string): Facebook Page ID - file_url (string): Public URL of the video file - title (string, optional): Video title - description (string, optional): Video description

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_get_page_conversations
annotations: verified low

Lists conversations (messages) in a Facebook Page inbox. Args: - page_id (string): Facebook Page ID - limit (number): Max conversations (1–100, default 20) - after (string, optional): Pagination cursor Requires pages_messaging permission.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_conversation_messages
annotations: verified low

Gets messages from a specific Page conversation. Args: - page_id (string): Facebook Page ID (for auth) - conversation_id (string): Conversation ID (from meta_get_page_conversations) - limit (number): Max messages (1–100, default 20)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_send_page_message
annotations: verified low

Sends a message from a Facebook Page to a user (in an existing conversation). Args: - page_id (string): Facebook Page ID - recipient_id (string): PSID (page-scoped user ID) of the recipient - message (string): Message text Requires pages_messaging permission. Only works within the 24-hour messaging window.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_get_page_insights
annotations: verified low

Gets analytics/insights for a Facebook Page. Requires: meta_list_pages called first. Args: - page_id (string): Facebook Page ID - metrics (string[]): Current Page Insights metrics to retrieve. Safe defaults: Content views/reach: page_media_view, page_total_media_view_unique Engagement: page_post_engagements Follow growth: page_daily_follows_unique, page_daily_unfollows_unique Page views: page_views_total - period (string): Aggregation period: 'day', 'week', 'days_28', 'month' - since (string, optional): Start date YYYY-MM-DD - until (string, optional): End date YYYY-MM-DD Returns: Time-series data for each metric.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_post_insights
annotations: verified low

Gets performance metrics for a specific Facebook Page post. Requires: meta_list_pages called first. Args: - post_id (string): Post ID (e.g., "page_id_post_id") - page_id (string): Page ID (for authentication) - metrics (string[]): Metrics to retrieve. Current non-video defaults: Media: post_media_view, post_total_media_view_unique Engagement: post_clicks, post_clicks_by_type Reactions: post_reactions_by_type_total, post_reactions_like_total, post_reactions_love_total, post_reactions_wow_total, post_reactions_haha_total, post_reactions_sorry_total, post_reactions_anger_total Activity: post_activity_by_action_type, post_activity_by_action_type_unique Video-only post_video_* metrics are opt-in and should only be requested for video posts. All post metrics use 'lifetime' period (cumulative from post creation).

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_list_pixels
annotations: verified low

Lists all Meta Pixels for an ad account. Args: - ad_account_id (string): Ad account ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_update_page
annotations: verified low

Updates a Facebook Page's profile information. Args: - page_id (string): Facebook Page ID - about (string, optional): Short description (max 255 chars) - description (string, optional): Long description - website (string, optional): Website URL - phone (string, optional): Phone number - emails (string[], optional): Contact emails - hours (object, optional): Business hours as key-value pairs (e.g., {"mon_1_open":"09:00","mon_1_close":"17:00"}) - category (string, optional): Page category (e.g., "Restaurant") - username (string, optional): Page username/vanity URL - contact_address (object, optional): Mailing address with street, city, state, zip, country Requires pages_manage_metadata permission.

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_get_post_comments
annotations: verified low

Gets comments on a Facebook Page post. Args: - post_id (string): Post ID (format: {page_id}_{post_id}) - page_id (string): Page ID (for authentication — call meta_list_pages first) - limit (number): Max comments (1–100, default 25) - order (string): 'chronological' or 'reverse_chronological' - after (string, optional): Pagination cursor - filter (string): 'toplevel' (default), 'stream' (all including replies)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_reply_post_comment
annotations: verified low

Replies to a comment on a Facebook Page post. Args: - comment_id (string): Comment ID to reply to - page_id (string): Page ID (for token lookup) - message (string): Reply text

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_delete_comment
annotations: verified low

Deletes a comment on a Facebook Page post. Permanent action. Args: - comment_id (string): Comment ID to delete - page_id (string): Page ID (for authentication)

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_like_object
annotations: verified low

Likes or removes a like from a page post or comment, acting as the Page. Args: - object_id (string): Post ID or Comment ID - page_id (string): Page ID (for token) - unlike (boolean): If true, removes the like instead

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_get_scheduled_posts
annotations: verified low

Lists scheduled (unpublished) posts for a Facebook Page. Args: - page_id (string): Facebook Page ID - limit (number): Max results (1–100, default 20)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_page_albums
annotations: verified low

Lists photo albums on a Facebook Page. Args: - page_id (string): Facebook Page ID - limit (number): Max results (1–100, default 20)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_page_events
annotations: verified low

Lists events created by a Facebook Page. Args: - page_id (string): Facebook Page ID - limit (number): Max results (1–100, default 20) - time_filter (string): 'upcoming' or 'past'

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_page_tagged
annotations: verified low

Gets posts that tag this Facebook Page. Requires Meta App Review approval for Page Public Content Access on many apps; if unapproved, Meta returns a permission/app-review error rather than data. Args: - page_id (string): Facebook Page ID - limit (number): Max results (1–100, default 20)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_page_fan_demographics
annotations: verified low

Gets fan/follower demographic breakdowns for a Facebook Page via insights. Args: - page_id (string): Facebook Page ID - metrics (string[]): Demographic metrics — 'page_follows_city', 'page_follows_country'

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_post_reactions
annotations: verified low

Gets reaction counts (like, love, haha, wow, sad, angry) on a post. Requires the post to be visible to the token and may require Page Public Content Access or a Page token for Page-owned posts. Args: - post_id (string): Post ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_update_post
annotations: verified low

Updates an existing Facebook Page post's message text. Args: - post_id (string): Post ID - page_id (string): Page ID (for token) - message (string): New message text

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_get_page_videos
annotations: verified low

Lists videos uploaded to a Facebook Page. Args: - page_id (string): Facebook Page ID - limit (number): Max results (1–100, default 20) - include_thumbnails (boolean): Add thumbnails back only when needed; Meta caps page-video edge requests at 600

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_visitor_posts
annotations: verified low

Gets posts published by visitors on the Facebook Page wall. Requires Meta App Review approval for Page Public Content Access on many apps; if unapproved, Meta returns a permission/app-review error rather than data. Args: - page_id (string): Facebook Page ID - limit (number): Max results (1–100, default 20)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_published_posts
annotations: verified low

Gets posts published by the Page itself (excludes visitor posts, unlike the feed edge). Args: - page_id (string): Facebook Page ID - limit (number): Max results (1–100, default 20)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_blocked_users
annotations: verified low

Lists users blocked by the Facebook Page. Args: - page_id (string): Facebook Page ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_page_tabs
annotations: verified low

Lists custom tabs on a Facebook Page. Requires Meta App Review approval for Page Public Content Access on many apps; if unapproved, Meta returns a permission/app-review error rather than data. Args: - page_id (string): Facebook Page ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_page_picture
annotations: verified low

Gets the profile picture URL for a Facebook Page. Args: - page_id (string): Facebook Page ID - size (string): Picture size — small, normal, large, square (default: large)

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_post
annotations: verified low

Gets detailed information about a specific Facebook post. Requires the post to be visible to the token and may require Meta App Review approval for Page Public Content Access for public Page posts. Args: - post_id (string): Post ID (format: {page_id}_{post_id})

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_event
annotations: verified low

Creates an event on a Facebook Page. Args: - page_id (string): Facebook Page ID - name (string): Event name - start_time (string): ISO 8601 datetime (e.g., 2024-06-15T18:00:00-0400) - end_time (string, optional): ISO 8601 datetime - description (string, optional): Event description - place (string, optional): Location name - ticket_uri (string, optional): Ticket URL

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_get_page_locations
annotations: verified low

Lists location pages for a business with multiple locations. Args: - page_id (string): Parent Facebook Page ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_page_cta
annotations: verified low

Gets the call-to-action button configured on a Facebook Page. Args: - page_id (string): Facebook Page ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_page_photos
annotations: verified low

Lists photos uploaded to a Facebook Page. Args: - page_id (string): Facebook Page ID - type (string): 'uploaded' (by page) or 'tagged' (photos page is tagged in) - limit (number): Max results (default 20) - after (string, optional): Pagination cursor for next page - before (string, optional): Pagination cursor for previous page

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_page_ratings
annotations: verified low

Gets ratings and reviews for a Facebook Page. Args: - page_id (string): Facebook Page ID - limit (number): Max results (default 20) - after (string, optional): Pagination cursor for next page - before (string, optional): Pagination cursor for previous page

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_subscribe_page_webhooks
annotations: verified low

Subscribes your app to receive webhook updates for a Facebook Page. Args: - page_id (string): Facebook Page ID - subscribed_fields (string[]): Fields to subscribe to, e.g., feed, messages, messaging_postbacks, conversations Call without subscribed_fields to check current subscriptions.

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_get_promotable_posts
annotations: verified low

Gets posts that are eligible for boosting/promotion on a Facebook Page. Args: - page_id (string): Facebook Page ID - limit (number): Max results (default 20) - after (string, optional): Pagination cursor for next page - before (string, optional): Pagination cursor for previous page

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_update_page_picture
annotations: verified low

Updates a Facebook Page's profile picture. Args: - page_id (string): Facebook Page ID - picture_url (string): URL of the new profile picture Requires pages_manage_metadata permission.

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_update_page_cover
annotations: verified low

Updates a Facebook Page's cover photo. Args: - page_id (string): Facebook Page ID - cover_url (string, optional): URL of the new cover photo - photo_id (string, optional): ID of an existing photo to use as cover - offset_y (number, optional): Vertical offset of the cover photo (0–100) - no_feed_story (boolean, optional): If true, don't publish a feed story about the change Provide either cover_url or photo_id. Requires pages_manage_metadata permission.

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_hide_comment
annotations: verified low

Hides or unhides a comment on a Facebook Page post. Hidden comments are only visible to the comment author and their friends. This is a non-destructive alternative to deletion — useful for moderation. Args: - comment_id (string): Comment ID to hide/unhide - page_id (string): Page ID (for authentication) - is_hidden (boolean): true to hide, false to unhide Requires pages_manage_engagement permission.

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_publish_page_story
annotations: verified low

Publishes a story (photo or video) to a Facebook Page. Requires: meta_list_pages called first to load page tokens. Args: - page_id (string): Facebook Page ID - media_url (string): Public URL of the image or video - media_type (enum): "photo" or "video" Returns the story ID on success.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_create_live_video
annotations: verified low

Creates a live video broadcast on a Facebook Page. Requires: meta_list_pages called first to load page tokens. Args: - page_id (string): Facebook Page ID - title (string): Title of the live video - description (string, optional): Description of the broadcast - planned_start_time (string, optional): ISO 8601 datetime for scheduled broadcasts If planned_start_time is provided, the broadcast is created as SCHEDULED_UNPUBLISHED; otherwise it goes LIVE_NOW. Returns the stream URL and live video ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_get_live_videos
annotations: verified low

Lists live videos on a Facebook Page. Requires: meta_list_pages called first to load page tokens. Args: - page_id (string): Facebook Page ID - broadcast_status (enum, optional): Filter by status — "LIVE", "UNPUBLISHED", "SCHEDULED_UNPUBLISHED", or "VOD" - limit (number, optional): Max results (1–100, default 10) - after (string, optional): Pagination cursor Returns live video details including title, status, views, and creation time.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_end_live_video
annotations: verified low

Ends an active live video broadcast. Requires: meta_list_pages called first to load page tokens. Args: - live_video_id (string): The live video ID to end - page_id (string): Facebook Page ID (needed for page token auth) Ends the broadcast immediately.

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_get_page_automated_responses
annotations: verified low

Gets the current Messenger Profile automated messaging settings for a Facebook Page. Requires: meta_list_pages called first to load page tokens. Args: - page_id (string): Facebook Page ID Returns: Greeting text, ice breakers, get-started payload, persistent menu, commands, allowed domains, and account-linking URL when configured.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_set_instant_reply
annotations: verified low

Sets the instant reply message for a Facebook Page. This is the automatic message sent immediately when someone messages the page. Requires: meta_list_pages called first to load page tokens. Args: - page_id (string): Facebook Page ID - message (string): The instant reply message text - enabled (boolean, default true): Whether instant reply is enabled

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_set_away_message
annotations: verified low

Sets the away message for a Facebook Page. This is shown when the page is set to away mode. Requires: meta_list_pages called first to load page tokens. Args: - page_id (string): Facebook Page ID - message (string): The away message text - enabled (boolean, default true): Whether away mode is enabled

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_set_greeting
annotations: verified low

Sets the Messenger greeting text for a Facebook Page. This is shown to users before they send their first message. Requires: meta_list_pages called first to load page tokens. Args: - page_id (string): Facebook Page ID - greeting_text (string): The greeting text (max 160 characters)

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_publish_page_reel
annotations: verified low

Publishes a Reel (short-form video) to a Facebook Page. Requires: meta_list_pages must be called first to load page tokens. Args: - page_id (string): Facebook Page ID - video_url (string): Public URL of the video file - description (string, optional): Reel description/caption - title (string, optional): Reel title Returns: The reel/video ID on success. Notes: - Video must be hosted on a publicly accessible server - FB Reels use a simpler single-step flow (no container polling needed)

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_cross_post
annotations: verified low

Publishes the same content to both a Facebook Page and Instagram simultaneously. Requires: meta_list_pages must be called first to load page tokens. Args: - page_id (string): Facebook Page ID - ig_account_id (string): Instagram professional account ID - message (string): Text content (used as FB post text and IG caption) - image_url (string, optional): Public image URL — creates photo posts on both platforms - video_url (string, optional): Public video URL — creates Reels on both platforms Logic: - If image_url: FB photo post + IG photo post (parallel) - If video_url: FB Reel + IG Reel (parallel) - If text only: FB text post only (IG doesn't support text-only posts) - Uses Promise.allSettled so one platform failing doesn't block the other Returns: Results from both platforms (which succeeded, which failed).

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_search_ad_library
annotations: verified low

Searches the Meta Ad Library for ads from any advertiser. This is a transparency tool — no ad account access needed. Args: - ad_reached_countries (string[]): Required. ISO country codes where ads were shown (e.g., ["US", "GB"]) - search_terms (string, optional): Keywords to search ad text - search_page_ids (string[], optional): Specific Page IDs to search - ad_type (string): ALL, POLITICAL_AND_ISSUE_ADS, HOUSING_ADS, EMPLOYMENT_ADS, CREDIT_ADS (default: ALL) - ad_active_status (string): ALL, ACTIVE, INACTIVE (default: ALL) - ad_delivery_date_min (string, optional): Min delivery date YYYY-MM-DD - ad_delivery_date_max (string, optional): Max delivery date YYYY-MM-DD - limit (number): Max results (1–100, default 25) - after (string, optional): Pagination cursor Returns: Ad creatives, spend ranges, impressions, demographics, and targeting info. Note: Requires a valid access token but does NOT require ad account ownership. Meta may still require the app to have the Ad Library API / ads_archive feature approved in App Review; unapproved apps receive permission errors.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_account_insights
annotations: verified low

Gets performance insights for a Meta ad account. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - date_preset (string): Date range preset (default: last_30d) - since (string, optional): Custom start date YYYY-MM-DD (overrides date_preset) - until (string, optional): Custom end date YYYY-MM-DD - breakdowns (string[], optional): Segment by age, gender, country, device_platform, placement, etc. Returns comprehensive metrics including: Performance: impressions, reach, clicks, spend, frequency, unique_clicks Cost: cpm, cpc, cpp, ctr, cost_per_action_type, cost_per_conversion, cost_per_inline_link_click, cost_per_outbound_click, cost_per_thruplay Engagement: actions, inline_link_clicks, inline_link_click_ctr, inline_post_engagement, outbound_clicks, outbound_clicks_ctr, social_spend Conversions: conversions, conversion_values, purchase_roas Video: video_play_actions, video_avg_time_watched_actions, video_thruplay_watched_actions, video_p25/p50/p75/p95/p100_watched_actions Quality: quality_ranking, engagement_rate_ranking, conversion_rate_ranking

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_campaign_insights
annotations: verified low

Gets performance insights for campaigns in a Meta ad account. Args: - ad_account_id (string): Ad account ID - campaign_id (string, optional): Specific campaign ID (omit for all campaigns) - date_preset (string): Date range preset (default: last_30d) - since (string, optional): Custom start date YYYY-MM-DD - until (string, optional): Custom end date YYYY-MM-DD - breakdowns (string[], optional): Segment by age, gender, country, device_platform, etc. Returns per-campaign spend, impressions, clicks, CTR, and actions.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_adset_insights
annotations: verified low

Gets performance insights for ad sets. Args: - ad_account_id (string): Ad account ID (use for all ad sets) - adset_id (string, optional): Specific ad set ID - campaign_id (string, optional): All ad sets in a campaign - date_preset (string): Date range preset (default: last_30d) - since / until (string, optional): Custom date range YYYY-MM-DD - breakdowns (string[], optional): age, gender, country, device_platform, etc. Provide ad_account_id or campaign_id or adset_id.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_ad_insights
annotations: verified low

Gets performance insights at the individual ad level. Args: - ad_account_id (string, optional): All ads in account - campaign_id (string, optional): All ads in campaign - adset_id (string, optional): All ads in ad set - ad_id (string, optional): Specific ad - date_preset (string): Date range preset (default: last_30d) - since / until (string, optional): Custom date range YYYY-MM-DD - breakdowns (string[], optional): age, gender, country, device_platform, etc. Provide one of: ad_id, adset_id, campaign_id, or ad_account_id.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_list_product_catalogs
annotations: verified low

Lists product catalogs for a Meta business. Args: - business_id (string): The business ID - limit (number): Max results (1–100, default 25) Returns catalog IDs, names, product counts, and verticals.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_product_catalog
annotations: verified low

Gets details for a single product catalog. Args: - catalog_id (string): The catalog ID Returns catalog name, product count, vertical, business info, and store settings.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_list_products
annotations: verified low

Lists products in a product catalog. Args: - catalog_id (string): The catalog ID - limit (number): Max results (1–100, default 25) - after (string, optional): Pagination cursor - filter (object, optional): Filter criteria (e.g., { availability: "in stock" }) Returns product IDs, names, prices, availability, and more.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_product
annotations: verified low

Gets details for a single product. Args: - product_id (string): The product ID Returns full product details including price, availability, sale price, condition, and inventory.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_product
annotations: verified low

Adds a product to a catalog. Args: - catalog_id (string): The catalog ID - name (string): Product name - description (string): Product description - price (number): Price in cents - currency (string): Currency code (default "USD") - availability (enum): "in stock", "out of stock", "preorder", "available for order" - image_url (string): Product image URL - url (string): Product page URL - brand (string, optional): Brand name - category (string, optional): Product category - retailer_id (string): Your unique product ID Returns the created product ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_update_product
annotations: verified low

Updates a product's details. Args: - product_id (string): The product ID - name, description, price, availability, image_url, url (all optional) Returns confirmation of the update.

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_delete_product
annotations: verified low

Deletes a product from a catalog. Args: - product_id (string): The product ID This action is permanent and cannot be undone.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_list_product_sets
annotations: verified low

Lists product sets (subgroups) in a catalog. Args: - catalog_id (string): The catalog ID - limit (number): Max results (1–100, default 25) Returns product set IDs, names, filters, and product counts.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_list_product_feeds
annotations: verified low

Lists product feeds for a catalog. Feeds are automated data sources that keep catalogs up-to-date. Args: - catalog_id (string): Product catalog ID - limit (number): Max results (1–100, default 25) Returns feed IDs, names, schedules, and latest upload status.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_product_feed
annotations: verified low

Creates a new product feed for a catalog to automatically sync products from a URL. Args: - catalog_id (string): Product catalog ID - name (string): Feed name - schedule_url (string): URL of the product feed file (CSV, TSV, XML) - schedule_interval (string): How often to fetch — HOURLY, DAILY, WEEKLY, MONTHLY Returns the new feed ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
threads_get_profile
annotations: verified low

Gets the authenticated user's Threads profile. Returns: User ID, username, name, bio, and profile picture URL. Requires: THREADS_ACCESS_TOKEN env var.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_pixel
annotations: verified low

Creates a new Meta Pixel for conversion tracking. Args: - ad_account_id (string): Ad account ID - name (string): Pixel name

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
threads_get_posts
annotations: verified low

Lists the authenticated user's Threads posts. Args: - threads_user_id (string): Threads user ID (from threads_get_profile) - limit (number): Max results (1–100, default 20) - since (string, optional): Start date YYYY-MM-DD - until (string, optional): End date YYYY-MM-DD - after (string, optional): Pagination cursor

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
threads_publish_text
annotations: verified low

Publishes a text-only post to Threads. Two-step flow: creates a container, then publishes it. Args: - threads_user_id (string): Threads user ID - text (string): Post text (up to 500 characters) - reply_to_id (string, optional): Thread ID to reply to - quote_post_id (string, optional): Thread ID to quote Returns: Media ID of the published thread.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
threads_publish_image
annotations: verified low

Publishes an image post to Threads. Args: - threads_user_id (string): Threads user ID - image_url (string): Public URL of the image (JPEG or PNG) - text (string, optional): Caption text

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
threads_publish_video
annotations: verified low

Publishes a video post to Threads. Args: - threads_user_id (string): Threads user ID - video_url (string): Public URL of the video (MP4) - text (string, optional): Caption text Note: Video processing may take time. Polls for up to 60 seconds.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
threads_publish_carousel
annotations: verified low

Publishes a carousel post (2–20 images/videos) to Threads. Three-step flow: 1. Create individual item containers 2. Create carousel container referencing them 3. Publish Args: - threads_user_id (string): Threads user ID - items (array): 2–20 items, each with url (string) and type ('IMAGE' or 'VIDEO') - text (string, optional): Caption text

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
threads_delete_post
annotations: verified low

Deletes a Threads post permanently. Args: - media_id (string): Threads media ID to delete

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
threads_get_replies
annotations: verified low

Gets replies to a Threads post. Args: - media_id (string): Threads media ID - reverse (boolean, optional): Reverse chronological order (default false)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
threads_hide_reply
annotations: verified low

Hides or unhides a reply on a Threads post. Args: - reply_id (string): Reply media ID - hide (boolean): true to hide, false to unhide

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
threads_get_post_insights
annotations: verified low

Gets performance metrics for a specific Threads post. Args: - media_id (string): Threads media ID - metrics (string[]): Metrics to retrieve. Options: views, likes, replies, reposts, quotes, shares, reach, saved Returns: Metric values for the post.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
threads_get_user_insights
annotations: verified low

Gets account-level metrics for the authenticated Threads user. Args: - threads_user_id (string): Threads user ID - metrics (string[]): Options: Time-series: views, likes, replies, reposts, quotes, followers_count, reach Demographics: follower_demographics (breakdown by age, country, city, gender — requires 100+ followers) - since (string, optional): Start date YYYY-MM-DD (required for time-series metrics) - until (string, optional): End date YYYY-MM-DD - breakdown (string, optional): For follower_demographics: 'age', 'country', 'city', 'gender'

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
threads_check_rate_limits
annotations: verified low

Checks the current publishing rate limit usage for Threads. Args: - threads_user_id (string): Threads user ID Returns: Current usage and limit quota (250 posts per 24 hours).

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
threads_get_post
annotations: verified low

Gets details for a single Threads post by ID. Args: - media_id (string): Threads media ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
threads_get_conversation
annotations: verified low

Gets the full conversation tree (all replies at all levels) for a Threads post. Args: - media_id (string): Root thread media ID - reverse (boolean, optional): Reverse chronological order

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
threads_get_mentions
annotations: verified low

Gets posts where the authenticated user was @mentioned. Args: - threads_user_id (string): Threads user ID

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
threads_get_media_children
annotations: verified low

Gets individual items in a Threads carousel post. Args: - media_id (string): Carousel media ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
threads_repost
annotations: verified low

Reposts (shares) an existing thread to your profile. Args: - threads_user_id (string): Your Threads user ID - media_id (string): Thread media ID to repost

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
threads_search
annotations: verified low

Searches Threads posts by keyword. Args: - threads_user_id (string): Threads user ID (for auth context) - q (string): Search query - limit (number): Max results (default 20) Note: Results are limited to the authenticated user's content and public threads.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
threads_publish_gif
annotations: verified low

Publishes a GIF post to Threads using a GIPHY URL. Two-step flow: creates a container, then publishes it. Args: - threads_user_id (string): Threads user ID - gif_url (string): GIPHY URL of the GIF - text (string, optional): Caption text - reply_to_id (string, optional): Thread ID to reply to - reply_control (enum, optional): Who can reply — everyone, accounts_you_follow, or mentioned_only Returns: Media ID of the published thread.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
threads_publish_link
annotations: verified low

Publishes a thread post with a link attachment. Args: - threads_user_id (string): Threads user ID - text (string): Post text containing the URL - link_attachment (string): URL to attach as a link preview

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
threads_get_followers
annotations: verified low

Lists followers of the authenticated Threads user. Args: - threads_user_id (string): Threads user ID - limit (number): Max results (1–100, default 25) - after (string, optional): Pagination cursor Returns: User IDs, usernames, and profile picture URLs of followers. Note: Requires threads_basic scope. Only returns users who have allowed their followers list to be visible.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
threads_get_following
annotations: verified low

Lists accounts that the authenticated Threads user is following. Args: - threads_user_id (string): Threads user ID - limit (number): Max results (1–100, default 25) - after (string, optional): Pagination cursor Returns: User IDs, usernames, and profile pictures of followed accounts.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_list_instagram_accounts
annotations: verified low

Lists all Instagram professional accounts linked to the user's Facebook Pages. Requires: meta_list_pages must be called first. Returns: Instagram account IDs, usernames, follower counts. The account ID is needed for all other Instagram tools.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_instagram_media
annotations: verified low

Lists media (posts, reels, stories) from an Instagram professional account. Args: - ig_account_id (string): Instagram account ID (from meta_list_instagram_accounts) - limit (number): Max items to return (1–100, default 20) - after (string, optional): Pagination cursor

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_publish_instagram_photo
annotations: verified low

Publishes a single image post to an Instagram professional account. Two-step process: creates a media container then publishes it. Args: - ig_account_id (string): Instagram account ID - image_url (string): Public URL of the JPEG image to post (must be publicly accessible) - caption (string, optional): Post caption (supports hashtags and @mentions) - alt_text (string, optional): Alt text for accessibility (screen readers) - location_id (string, optional): Facebook Place ID to tag location Returns: Media ID of the published post. Scheduling: Pass scheduled_publish_time (Unix timestamp, 10 min – 75 days in future) to schedule the post instead of publishing immediately. Limitations: - JPEG only (no PNG, GIF, HEIC) - Max 100 posts per 24 hours - Image must be hosted on a public server

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_publish_instagram_reel
annotations: verified low

Publishes a video reel to an Instagram professional account. Args: - ig_account_id (string): Instagram account ID - video_url (string): Public URL of the video file (MP4 recommended) - caption (string, optional): Reel caption - share_to_feed (boolean, optional): Also share to feed. Default true. Returns: Media ID of the published reel. Notes: - Video must be on a publicly accessible server - Check container status before publishing — video processing can take time - Use meta_check_instagram_container to check readiness - Scheduling: Pass scheduled_publish_time (Unix timestamp, 10 min – 75 days in future) to schedule instead of publishing immediately

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_publish_instagram_story
annotations: verified low

Publishes an image or video story to an Instagram professional account. Args: - ig_account_id (string): Instagram account ID - media_url (string): Public URL of the image or video - media_type (string): 'IMAGE' or 'VIDEO' Returns: Media ID of the published story.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_publish_instagram_carousel
annotations: verified low

Publishes a carousel post (2–10 images/videos) to Instagram. Three-step process: 1. Creates individual media containers for each item 2. Creates a carousel container referencing them 3. Publishes the carousel Args: - ig_account_id (string): Instagram account ID - items (array): Array of up to 10 items, each with: - url (string): Public image URL (JPEG) or video URL - type (string): 'IMAGE' or 'VIDEO' - caption (string, optional): Carousel caption Returns: Media ID of the published carousel. Scheduling: Pass scheduled_publish_time (Unix timestamp, 10 min – 75 days in future) to schedule instead of publishing immediately.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_check_instagram_publishing_limit
annotations: verified low

Checks how many of the 100 API-published posts per 24-hour limit have been used. Args: - ig_account_id (string): Instagram account ID Returns: Current usage and quota remaining.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_check_instagram_container
annotations: verified low

Checks the publishing status of an Instagram media container (used for reels/videos that need processing). Args: - container_id (string): Container ID from a publish step Returns: status_code — IN_PROGRESS, FINISHED, ERROR, EXPIRED.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_pixel
annotations: verified low

Gets details for a single Meta Pixel. Args: - pixel_id (string): Pixel ID - response_format (optional): "json" or "text"

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_instagram_account_insights
annotations: verified low

Gets performance insights for an Instagram professional account. Args: - ig_account_id (string): Instagram account ID - metrics (string[]): Metrics to retrieve. Options: Interactions: accounts_engaged, total_interactions, likes, comments, shares, saves, replies, reposts, reach, views, profile_links_taps, account_repost_count Legacy: impressions (deprecated v22.0+), follower_count, email_contacts, phone_call_clicks, text_message_clicks, get_directions_clicks, profile_views, website_clicks Demographics: engaged_audience_demographics, reached_audience_demographics, follower_demographics, online_followers Note: account_repost_count (Dec 2025) returns the total number of reposts across the account for the given period. - period (string): 'day', 'week', 'days_28', 'month', 'lifetime' (lifetime only for demographic metrics) - since (string, optional): Start date YYYY-MM-DD - until (string, optional): End date YYYY-MM-DD - breakdown (string, optional): For demographic metrics: 'age', 'city', 'country', 'gender' - timeframe (string, optional): For demographic metrics: 'last_14_days', 'last_30_days', 'last_90_days', 'this_month', 'this_week' Note: demographic metrics require 100+ followers. online_followers only available for last 30 days.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_instagram_media_insights
annotations: verified low

Gets performance metrics for a specific Instagram media object. Args: - media_id (string): Instagram media ID (from meta_get_instagram_media) - metrics (string[]): Metrics vary by media type: Photos/Carousels: reach, likes, comments, shares, saved, total_interactions, follows, profile_visits, profile_activity, views, impressions (deprecated) Reels/Video: reach, likes, comments, shares, saved, total_interactions, follows, profile_visits, profile_activity, views, ig_reels_avg_watch_time, ig_reels_video_view_total_time, reels_skip_rate, repost_count, crossposted_views, facebook_views, impressions (deprecated), plays (deprecated), clips_replays_count (deprecated) Stories: reach, shares, follows, profile_visits, profile_activity, replies, navigation, total_interactions, views, impressions (deprecated) New Reels metrics (Dec 2025): - reels_skip_rate: Percentage of viewers who skip within first 3 seconds - repost_count: Number of reposts of this media - crossposted_views: Total views across Instagram and Facebook (for crossposted content) - facebook_views: Facebook-specific views for crossposted Reels - breakdown (string, optional): 'action_type' (for profile_activity) or 'story_navigation_action_type' (for navigation)

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_instagram_comments
annotations: verified low

Gets comments on an Instagram media object. Args: - media_id (string): Instagram media ID - limit (number): Max comments to return (1–100, default 20)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_reply_instagram_comment
annotations: verified low

Replies to a comment on an Instagram media object. Args: - media_id (string): Instagram media ID (not the comment ID) - message (string): Reply text - comment_id (string, optional): If replying to a specific comment Returns: Comment ID of the reply.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_search_instagram_hashtag
annotations: verified low

Searches for a hashtag and gets its ID, then retrieves top or recent media. Two-step process: first looks up the hashtag ID, then fetches media. Args: - ig_account_id (string): Instagram account ID (required for auth context) - hashtag (string): Hashtag to search (without #) - edge (string): 'top_media' or 'recent_media' (default: top_media) - limit (number): Max results (1–50, default 20) Note: Limited to 30 unique hashtag searches per 7 days per IG account.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_instagram_user
annotations: verified low

Gets public profile info for any Instagram business/creator account by username. Uses the Business Discovery API — no follow/connection required. Args: - ig_account_id (string): Your Instagram professional account ID used as the authenticated Business Discovery viewer, not the target account - username (string): Instagram username to look up (without @) Returns: Bio, follower/following counts, media count, profile picture, and recent media.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_instagram_stories
annotations: verified low

Gets currently active stories for an Instagram professional account. Args: - ig_account_id (string): Instagram account ID Returns: List of active story media objects. Stories expire after 24 hours.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_delete_instagram_media
annotations: verified low

Deletes an Instagram media object (post, reel, story). This is permanent. Args: - media_id (string): Instagram media ID to delete

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_toggle_instagram_comments
annotations: verified low

Enables or disables comments on an Instagram media object. Args: - media_id (string): Instagram media ID - enabled (boolean): true to enable comments, false to disable

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_delete_instagram_comment
annotations: verified low

Deletes a comment on an Instagram media object. This is permanent. Args: - comment_id (string): The comment ID to delete

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_get_instagram_comment_replies
annotations: verified low

Gets replies to a specific Instagram comment. Args: - comment_id (string): Parent comment ID - limit (number): Max replies (1–50, default 20)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_instagram_media_children
annotations: verified low

Gets individual media items in a carousel/album post. Carousel children only expose a subset of the parent media fields, so this tool requests the child-safe fields only to avoid Meta's "Field is not available for Carousel children media" error. Args: - media_id (string): Carousel media ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_instagram_mentioned_media
annotations: verified low

Gets media where the Instagram account was @mentioned in a caption or comment. Args: - ig_account_id (string): Instagram account ID - limit (number): Max results (default 20) Requires instagram_manage_comments permission.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_instagram_recent_hashtags
annotations: verified low

Gets hashtags recently searched by the Instagram account. Args: - ig_account_id (string): Instagram account ID Note: Limited to 30 unique hashtag searches per 7 days. This returns the recent searches.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_instagram_live_media
annotations: verified low

Gets live video broadcasts from an Instagram account. Args: - ig_account_id (string): Instagram account ID

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_instagram_product_tags
annotations: verified low

Gets product tags on an Instagram media object. Requires Instagram Shopping. Args: - media_id (string): Instagram media ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_publish_instagram_container
annotations: verified low

Publishes a pre-created Instagram media container. Use after checking container status is FINISHED. Useful for reels/videos where container creation and publishing are done in separate steps. Args: - ig_account_id (string): Instagram account ID - container_id (string): Container ID (from a previous create step)

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_get_instagram_single_media
annotations: verified low

Gets detailed information about a specific Instagram media object. Args: - media_id (string): Instagram media ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_instagram_conversations
annotations: verified low

Lists Instagram Direct Message conversations. Args: - ig_account_id (string): Instagram account ID - folder (string): 'inbox' (default), 'spam', or 'general' - limit (number): Max conversations (1–100, default 20) - after (string, optional): Pagination cursor Requires instagram_manage_messages permission and Meta App Review approval for Instagram messaging access. Uses user token (not page token).

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_instagram_messages
annotations: verified low

Gets messages in an Instagram Direct Message conversation. Args: - conversation_id (string): Conversation ID (from meta_get_instagram_conversations) - limit (number): Max messages (1–100, default 20) - after (string, optional): Pagination cursor Messages are returned in reverse chronological order from the API and displayed in chronological order. Requires instagram_manage_messages permission and Meta App Review approval for Instagram messaging access.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_send_instagram_message
annotations: verified low

Sends a text DM to an Instagram user. Args: - ig_account_id (string): Instagram account ID (sender) - recipient_id (string): Instagram-scoped user ID of the recipient - message (string): Text message to send Note: Only works within the 24-hour human agent messaging window or 7-day standard messaging window. The recipient must have messaged the account first. Returns: Message ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_send_instagram_media_message
annotations: verified low

Sends an image or link via Instagram Direct Message. Args: - ig_account_id (string): Instagram account ID (sender) - recipient_id (string): Instagram-scoped user ID of recipient - image_url (string, optional): URL of image to send - link_url (string, optional): URL of link to send (as a generic template) Provide either image_url or link_url (not both). Same messaging window restrictions as text DMs. Returns: Message ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_get_instagram_broadcast_channels
annotations: verified low

Deprecated. Broadcast Channels are not exposed by Meta's third-party Instagram APIs. This tool remains registered so callers get a structured deprecation signal instead of Meta's (#2500) Unknown path components error. Args: - ig_account_id (string): Instagram account ID Returns: Structured IG_BROADCAST_CHANNELS_DEPRECATED error with the current Meta docs URL.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_broadcast_channel_messages
annotations: verified low

Gets messages in an Instagram broadcast channel. Args: - channel_id (string): Broadcast channel ID - limit (number): Max messages (1–100, default 20) - after (string, optional): Pagination cursor Returns: Paginated list of messages with type, content, and timestamps.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_send_broadcast_channel_message
annotations: verified low

Sends a message to an Instagram broadcast channel. Args: - channel_id (string): Broadcast channel ID - message (string): Message text to send - link_url (string, optional): Clickable link to include with the message Returns: Message ID of the sent message.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_create_broadcast_channel_poll
annotations: verified low

Creates a poll in an Instagram broadcast channel. Args: - channel_id (string): Broadcast channel ID - question (string): Poll question - options (string[]): Poll options (2–4 items) Returns: Poll/message ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_hide_instagram_comment
annotations: verified low

Hides or unhides a comment on an Instagram media object. Hidden comments are only visible to the comment author. This is a non-destructive alternative to deletion — useful for moderation. Args: - comment_id (string): Comment ID to hide/unhide - is_hidden (boolean): true to hide, false to unhide

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_get_instagram_available_catalogs
annotations: verified low

Lists product catalogs available for Instagram Shopping on a professional account. Args: - ig_account_id (string): Instagram account ID Returns: Catalog IDs and names that can be used for product tagging on this account. Requires: instagram_shopping_tag_products permission.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_search_instagram_catalog_products
annotations: verified low

Searches for products in an Instagram Shopping catalog by name. Args: - ig_account_id (string): Instagram account ID - catalog_id (string): Product catalog ID (from meta_get_instagram_available_catalogs) - q (string): Product search query Returns: Matching products that can be tagged in Instagram posts.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_list_ad_accounts
annotations: verified low

Lists all Meta ad accounts accessible to the authenticated user. Returns ad account IDs (prefixed with act_), names, currency, status, and spend info. Call this first to get ad account IDs needed for campaign and insights tools.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_list_campaigns
annotations: verified low

Lists campaigns for a Meta ad account. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - status_filter (string[], optional): Filter by status: ACTIVE, PAUSED, ARCHIVED, DELETED - limit (number): Max results (1–100, default 20) - after (string, optional): Pagination cursor Returns campaign names, objectives, status, and budget info.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_campaign
annotations: verified low

Gets detailed information about a specific campaign. Args: - campaign_id (string): Campaign ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_campaign
annotations: verified low

Creates a new campaign in a Meta ad account. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - name (string): Campaign name - objective (string): Campaign objective. Common values: OUTCOME_AWARENESS, OUTCOME_TRAFFIC, OUTCOME_ENGAGEMENT, OUTCOME_LEADS, OUTCOME_APP_PROMOTION, OUTCOME_SALES - status (string): ACTIVE or PAUSED (default PAUSED) - daily_budget (number, optional): Daily budget in account currency cents - lifetime_budget (number, optional): Lifetime budget in cents (requires stop_time) - stop_time (string, optional): ISO 8601 end date (required for lifetime budget) - special_ad_categories (string[], optional): Required for housing, employment, credit ads Note: For OUTCOME_SALES objective, Advantage+ Shopping campaigns are available. These use Meta's AI to optimize targeting and placements automatically. Create a standard campaign first, then use meta_migrate_campaign_to_advantage_plus to convert it. Returns the new campaign ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_update_campaign
annotations: verified low

Updates an existing campaign. Only provided fields are changed. Can also migrate a campaign to Advantage+ Shopping by setting migrate_to_advantage_plus to true. Args: - campaign_id (string): Campaign ID to update - name (string, optional): New campaign name - status (string, optional): ACTIVE, PAUSED, or ARCHIVED - daily_budget (number, optional): New daily budget in cents - lifetime_budget (number, optional): New lifetime budget in cents - migrate_to_advantage_plus (boolean, optional): Migrate this campaign to Advantage+ Shopping (keeps original campaign ID)

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_delete_campaign
annotations: verified low

Deletes (archives) a campaign. This cannot be undone. Args: - campaign_id (string): Campaign ID to delete

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_migrate_campaign_to_advantage_plus
annotations: verified low

Migrates an existing campaign to Advantage+ Shopping (formerly ASC). Advantage+ Shopping campaigns use Meta's AI to automatically optimize targeting, placements, and creative delivery for online sales. After migration, Meta handles audience selection and budget allocation across placements for better ROAS. The campaign keeps its original ID — this is an in-place conversion, not a new campaign. Args: - campaign_id (string): Campaign ID to migrate - ad_account_id (string): Ad account ID (e.g., act_123456789)

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_list_adsets
annotations: verified low

Lists ad sets for a campaign or ad account. Args: - campaign_id (string, optional): Filter by campaign ID - ad_account_id (string, optional): Ad account ID (use if not filtering by campaign) - status_filter (string[], optional): ACTIVE, PAUSED, ARCHIVED, DELETED - limit (number): Max results (default 20) - after (string, optional): Pagination cursor Provide either campaign_id or ad_account_id.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_create_adset
annotations: verified low

Creates a new ad set within a campaign. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - campaign_id (string): Parent campaign ID - name (string): Ad set name - daily_budget (number, optional): Daily budget in cents - lifetime_budget (number, optional): Lifetime budget in cents (requires end_time) - billing_event (string): How you're charged: IMPRESSIONS, LINK_CLICKS, etc. - optimization_goal (string): What to optimize for: REACH, LINK_CLICKS, CONVERSIONS, etc. - targeting (object): Targeting spec JSON. Example: {"geo_locations": {"countries": ["US"]}, "age_min": 18, "age_max": 65} - start_time (string, optional): ISO 8601 start time - end_time (string, optional): ISO 8601 end time (required with lifetime_budget) - status (string): ACTIVE or PAUSED (default PAUSED) - placement_soft_opt_out (string[], optional): Placements to soft opt-out (up to 5% spend may still go to these). Only for Sales/Leads objectives. Returns the new ad set ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_get_delivery_estimate
annotations: verified low

Gets delivery estimate for an existing ad set. Args: - adset_id (string): Ad set ID Returns: Estimated daily outcomes, reach bounds, readiness, and targeting optimization metadata.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_update_adset
annotations: verified low

Updates an existing ad set. Only provided fields are changed. Args: - adset_id (string): Ad set ID to update - name (string, optional): New name - status (string, optional): ACTIVE, PAUSED, or ARCHIVED - daily_budget (number, optional): New daily budget in cents - end_time (string, optional): New end time ISO 8601 - placement_soft_opt_out (string[], optional): Placements to soft opt-out (up to 5% spend may still go to these). Only for Sales/Leads objectives.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_list_ads
annotations: verified low

Lists ads for an ad set, campaign, or ad account. Args: - adset_id (string, optional): Filter by ad set - campaign_id (string, optional): Filter by campaign - ad_account_id (string, optional): List all ads in account - status_filter (string[], optional): ACTIVE, PAUSED, ARCHIVED, DELETED - limit (number): Max results (default 20) - after (string, optional): Pagination cursor Provide one of adset_id, campaign_id, or ad_account_id.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_create_ad
annotations: verified low

Creates a new ad within an ad set. Args: - ad_account_id (string): Ad account ID - adset_id (string): Parent ad set ID - name (string): Ad name - creative_id (string): Ad creative ID (from meta_list_ad_creatives or meta_create_ad_creative) - status (string): ACTIVE or PAUSED (default PAUSED) Returns the new ad ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_update_ad
annotations: verified low

Updates an existing ad's status or name. Args: - ad_id (string): Ad ID - name (string, optional): New name - status (string, optional): ACTIVE, PAUSED, or ARCHIVED

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_list_ad_creatives
annotations: verified low

Lists ad creatives for an ad account. Args: - ad_account_id (string): Ad account ID - limit (number): Max results (default 20) - after (string, optional): Pagination cursor Returns creative IDs, names, and associated page post IDs.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_create_ad_creative
annotations: verified low

Creates an ad creative from an existing Facebook Page post. Args: - ad_account_id (string): Ad account ID - name (string): Creative name - page_id (string): Facebook Page ID that owns the post - object_story_id (string, optional): Use an existing published post as creative (format: {page_id}_{post_id}) - title (string, optional): Ad headline - body (string, optional): Ad body text - image_url (string, optional): Image URL for the creative - link_url (string, optional): Destination URL Returns the new creative ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_get_ad_preview
annotations: verified low

Generates a preview URL for an ad or creative. Args: - ad_id (string, optional): Existing ad ID - creative_id (string, optional): Creative ID to preview - ad_format (string): Preview format — DESKTOP_FEED_STANDARD, MOBILE_FEED_STANDARD, INSTAGRAM_STANDARD, INSTAGRAM_STORY, RIGHT_COLUMN_STANDARD Provide either ad_id or creative_id.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_delete_ad
annotations: verified low

Deletes an ad permanently. Args: - ad_id (string): Ad ID to delete

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_delete_adset
annotations: verified low

Deletes an ad set permanently. Args: - adset_id (string): Ad set ID to delete

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_get_ad_account_users
annotations: verified low

Lists users who have access to an ad account with their roles. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789)

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_upload_ad_image
annotations: verified low

Uploads an image to an ad account's image library for use in creatives. Args: - ad_account_id (string): Ad account ID - url (string): Public URL of the image to upload - name (string, optional): Name for the uploaded image Returns: Image hash (used when creating ad creatives).

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_search_targeting_interests
annotations: verified low

Searches for interest-based targeting options for ad sets. Args: - q (string): Search query (e.g., "yoga", "cooking") - limit (number): Max results (default 50) Returns: Interest IDs and names to use in ad set targeting.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_search_targeting_geolocations
annotations: verified low

Searches for geographic targeting options (countries, regions, cities, zip codes). Args: - q (string): Location search query (e.g., "New York", "United Kingdom") - type (string): Location type — country, region, city, zip, geo_market, electoral_district - limit (number): Max results (default 25) Returns: Location keys to use in ad set targeting.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_search_targeting_demographics
annotations: verified low

Searches for demographic targeting options (job titles, employers, education). Args: - q (string): Search query - type (string): adworkposition (job titles), adworkemployer (employers), adeducationschool (schools), adeducationmajor (majors)

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_reach_estimate
annotations: verified low

Estimates the potential reach for a targeting specification. Args: - ad_account_id (string): Ad account ID - targeting_spec (object): Targeting specification (same format as ad set targeting) - optimization_goal (string, optional): e.g., REACH, LINK_CLICKS, IMPRESSIONS Returns: Estimated daily reach and audience size.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_pixel_stats
annotations: verified low

Gets event volume stats for a pixel (critical for verifying pixel is firing). Args: - pixel_id (string): Pixel ID - start_time (string, optional): ISO date for start of range - end_time (string, optional): ISO date for end of range - aggregation (string, optional): one of browser_type, custom_data_field, device_os, device_type, event, host, match_keys, had_pii, pixel_fire, event_detection_method, url, event_value_count, url_by_rule, event_total_counts, event_source, event_processing_results. Common picks: "event" for event-name breakdowns, "device_os" for OS breakdowns, and "url" for URL breakdowns. - event (string, optional): Filter to specific event like "Purchase" - aggregation_window (string, optional): hour, day, or week - top_n (number, optional): Return only the first N rows after Meta ordering

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_update_pixel
annotations: verified low

Updates pixel settings. Args: - pixel_id (string): Pixel ID - name (string, optional): New pixel name - first_party_cookie_status (string, optional): "EMPTY", "FIRST_PARTY_COOKIE_ENABLED", or "FIRST_PARTY_COOKIE_DISABLED" - automatic_matching_fields (string[], optional): e.g. ["em","ph","fn","ln","ct","st","zp","country","db","ge","external_id"] - data_use_setting (string, optional): "EMPTY" or "DATA_USE_SETTING_LDU"

readOnlyHint false openWorldHint false idempotentHint true destructiveHint false
meta_delete_pixel
annotations: verified low

Deletes a Meta Pixel. Args: - pixel_id (string): Pixel ID to delete

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_share_pixel
annotations: verified low

Shares a pixel with another ad account. Args: - pixel_id (string): Pixel ID - ad_account_id (string): Target ad account ID - business_id (string): Business ID

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_list_custom_conversions
annotations: verified low

Lists custom conversions for an ad account. Args: - ad_account_id (string): Ad account ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_custom_conversion
annotations: verified low

Creates a custom conversion for tracking specific actions. Args: - ad_account_id (string): Ad account ID - name (string): Conversion name - pixel_id (string): Pixel ID to associate with - custom_event_type (string): Event type — CONTENT_VIEW, SEARCH, ADD_TO_CART, ADD_TO_WISHLIST, INITIATED_CHECKOUT, ADD_PAYMENT_INFO, PURCHASE, LEAD, COMPLETE_REGISTRATION, OTHER - rule (string): URL rule as JSON (e.g., {"url":{"i_contains":"thank-you"}})

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_list_saved_audiences
annotations: verified low

Lists saved audiences (targeting presets) for an ad account. Args: - ad_account_id (string): Ad account ID

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_list_ad_rules
annotations: verified low

Lists automated rules for an ad account. Args: - ad_account_id (string): Ad account ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_list_ad_labels
annotations: verified low

Lists ad labels for an ad account. Labels help organize campaigns, ad sets, and ads. Args: - ad_account_id (string): Ad account ID - limit (number): Max results (default 25) - after (string, optional): Pagination cursor - include_system_labels (boolean): Include Meta-generated placement_asset_* labels (default false)

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_ad_label
annotations: verified low

Creates a label for organizing ads, ad sets, or campaigns. Args: - ad_account_id (string): Ad account ID - name (string): Label name

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_list_ad_videos
annotations: verified low

Lists videos in an ad account's video library. Args: - ad_account_id (string): Ad account ID - limit (number): Max results (default 20) - thumbnails_limit (number): Number of thumbnails per video to request (0 omits thumbnails, default 1)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_upload_ad_video
annotations: verified low

Uploads a video to an ad account's video library for use in creatives. Args: - ad_account_id (string): Ad account ID - file_url (string): Public URL of video file - title (string, optional): Video title - description (string, optional): Video description

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_get_ad_account_activity
annotations: verified low

Gets the activity/change log for an ad account. Args: - ad_account_id (string): Ad account ID - limit (number): Max results (default 25) - since (string, optional): Start date YYYY-MM-DD - until (string, optional): End date YYYY-MM-DD

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_ad_account
annotations: verified low

Gets detailed information about a specific ad account. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789)

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_adset
annotations: verified low

Gets detailed information about a specific ad set. Args: - adset_id (string): Ad set ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_ad
annotations: verified low

Gets detailed information about a specific ad. Args: - ad_id (string): Ad ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_ad_creative
annotations: verified low

Gets detailed information about a specific ad creative. Args: - creative_id (string): Creative ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_ad_rule
annotations: verified low

Creates an automated rule for managing ads, ad sets, or campaigns. Args: - ad_account_id (string): Ad account ID - name (string): Rule name - evaluation_spec (object): Conditions that trigger the rule (e.g., {"evaluation_type":"TRIGGER","trigger":{"type":"STATS_CHANGE","field":"cost_per_result","value":"5.00","operator":"GREATER_THAN"}}) - execution_spec (object): Actions to take (e.g., {"execution_type":"PAUSE"}) - schedule_spec (object, optional): When to evaluate (e.g., {"schedule_type":"DAILY"})

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_delete_ad_rule
annotations: verified low

Deletes an automated ad rule. Args: - rule_id (string): Ad rule ID

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_list_ad_images
annotations: verified low

Lists images in an ad account's image library. Args: - ad_account_id (string): Ad account ID - limit (number): Max results (default 25)

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_browse_targeting_categories
annotations: verified low

Browses all available targeting category types for ad targeting. Args: - type (string): Category type — adTargetingCategory, adcountry, adlocale, adlanguage - limit (number): Max results (default 25) - after (string, optional): Pagination cursor

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_saved_audience
annotations: verified low

Creates a saved audience (reusable targeting preset) for an ad account. Args: - ad_account_id (string): Ad account ID - name (string): Audience name - targeting (object): Targeting spec object

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_delete_saved_audience
annotations: verified low

Deletes a saved audience. Args: - audience_id (string): Saved audience ID

readOnlyHint false openWorldHint false idempotentHint false destructiveHint true
meta_list_business_assets
annotations: verified low

Lists assets (pages, ad accounts, Instagram accounts, pixels) for a Business Manager. Args: - business_id: Business Manager ID - asset_type: "owned_pages", "owned_ad_accounts", "owned_instagram_accounts", "owned_pixels" - limit (optional, default 25): Max results Returns asset details including IDs, names, and type-specific metadata.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_create_ad_study
annotations: verified low

Creates an A/B test (ad study) to compare campaigns or ad sets. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - name (string): Study name - description (string, optional): Study description - start_time (string): ISO 8601 start time - end_time (string): ISO 8601 end time - type (enum): SPLIT_TEST or HOLDOUT - cells (array): Test cells, each with name, treatment_percentage, and optional campaign_ids/adset_ids - confidence_level (number, default 95): Statistical confidence level (e.g., 90, 95, 99) Returns: The created study ID.

readOnlyHint false openWorldHint false idempotentHint false destructiveHint false
meta_get_ad_studies
annotations: verified low

Lists A/B tests (ad studies) for a Meta ad account. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - limit (number): Max results (1–50, default 10) Returns: List of studies with name, type, status, dates, and results.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_list_ad_studies
annotations: verified low

Alias for meta_get_ad_studies. Lists A/B tests (ad studies) for a Meta ad account. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - limit (number): Max results (1–50, default 10)

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_ad_study_results
annotations: verified low

Gets detailed results of a specific A/B test (ad study). Args: - study_id (string): The ad study ID Returns: Study details including winner, confidence level, and per-cell metrics.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_list_leadgen_forms
annotations: verified low

Lists lead generation forms for a Facebook Page. Lead forms are used with OUTCOME_LEADS campaigns to collect user information. Requires: meta_list_pages must be called first to load page tokens. Args: - page_id (string): Facebook Page ID - limit (number): Max results (1–100, default 20) Returns form IDs, names, status, and creation times.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_leadgen_leads
annotations: verified low

Gets submitted leads from a lead generation form. Requires: meta_list_pages must be called first to load page tokens. Args: - form_id (string): Lead gen form ID (from meta_list_leadgen_forms) - page_id (string): Page ID (for authentication) - limit (number): Max results (1–100, default 25) - after (string, optional): Pagination cursor Returns lead data including field values, creation time, and ad info.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false
meta_get_ad_rule
annotations: verified low

Gets details for a specific automated ad rule. Args: - rule_id (string): Ad rule ID

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_get_minimum_budgets
annotations: verified low

Gets the minimum daily and lifetime budgets for an ad account by currency and bid strategy. Essential to check before creating ad sets — using a budget below the minimum causes API errors. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) Returns: Minimum budget requirements per bid strategy.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_list_offline_event_sets
annotations: verified low

Lists custom conversions for offline conversion management on an ad account. Meta's legacy offline conversion data set ad-account edge is no longer available in current Graph versions. This tool now reads the supported customconversions edge, which returns CustomConversion nodes that can reference offline event sets or other event sources. Args: - ad_account_id (string): Ad account ID (e.g., act_123456789) - limit (number): Max results (1–100, default 25) - after (string, optional): Pagination cursor Returns: Custom conversion IDs, names, event source details, and configuration.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_send_offline_event
annotations: verified low

Sends an offline conversion event to a Meta offline event set. Used for tracking in-store purchases, phone orders, or other offline conversions. Args: - event_set_id (string): Offline event set ID (from meta_list_offline_event_sets) - event_name (string): Event name (e.g., "Purchase", "Lead") - event_time (number): Unix timestamp of the conversion - user_data (object): Customer match data — at least one of: email, phone, fn (first name), ln (last name), ct (city), st (state), zip, country, external_id. All PII must be SHA256 hashed. - custom_data (object, optional): { currency, value, content_name, order_id } - upload_tag (string, optional): Tag for grouping uploads Returns: Number of events received.

readOnlyHint false openWorldHint true idempotentHint false destructiveHint false
meta_debug_token
annotations: verified low

Inspects the current Meta access token to show its type, expiry, permissions, and associated app/user. Useful for diagnosing "permission denied" errors or checking when a token expires. No arguments needed — inspects the META_ACCESS_TOKEN configured in your MCP env.

readOnlyHint true openWorldHint false idempotentHint true destructiveHint false
meta_health_check
annotations: verified low

Checks the health of the Meta MCP server: token status, cached tokens, API connectivity. Returns: Token validity, number of cached page tokens, Threads token status, and API reachability.

readOnlyHint true openWorldHint false idempotentHint false destructiveHint false

Permissions 3

env_vars low
Server uses env_vars capabilities via: process.env
filesystem low
Server uses filesystem capabilities via: fs sync ops
shell high
Server uses shell capabilities via: child_process, spawn()

Scan Findings 440

info
Tool 'meta_get_page' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_post' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_posts' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_post' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_photo_post' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_video_post' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_conversations' annotations are consistent annotation_checker · 80%
info
Tool 'meta_send_conversion_event' annotations are consistent annotation_checker · 80%
info
Tool 'meta_test_conversion_events' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_pages' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_custom_audiences' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_custom_audience' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_custom_audience' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_lookalike_audience' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_custom_audience' annotations are consistent annotation_checker · 80%
info
Tool 'meta_generate_chart' annotations are consistent annotation_checker · 80%
info
Tool 'meta_generate_comparison_chart' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_conversation_messages' annotations are consistent annotation_checker · 80%
info
Tool 'meta_send_page_message' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_insights' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_post_insights' annotations are consistent annotation_checker · 80%
info
Tool 'meta_update_page' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_post_comments' annotations are consistent annotation_checker · 80%
info
Tool 'meta_reply_post_comment' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_comment' annotations are consistent annotation_checker · 80%
info
Tool 'meta_like_object' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_scheduled_posts' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_albums' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_events' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_tagged' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_fan_demographics' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_post_reactions' annotations are consistent annotation_checker · 80%
info
Tool 'meta_update_post' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_videos' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_visitor_posts' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_published_posts' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_blocked_users' annotations are consistent annotation_checker · 80%
info
Tool 'meta_block_user' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_tabs' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_picture' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_post' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_event' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_locations' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_cta' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_photos' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_ratings' annotations are consistent annotation_checker · 80%
info
Tool 'meta_subscribe_page_webhooks' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_promotable_posts' annotations are consistent annotation_checker · 80%
info
Tool 'meta_update_page_picture' annotations are consistent annotation_checker · 80%
info
Tool 'meta_update_page_cover' annotations are consistent annotation_checker · 80%
info
Tool 'meta_hide_comment' annotations are consistent annotation_checker · 80%
info
Tool 'meta_publish_page_story' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_live_video' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_live_videos' annotations are consistent annotation_checker · 80%
info
Tool 'meta_end_live_video' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_page_automated_responses' annotations are consistent annotation_checker · 80%
info
Tool 'meta_set_instant_reply' annotations are consistent annotation_checker · 80%
info
Tool 'meta_set_away_message' annotations are consistent annotation_checker · 80%
info
Tool 'meta_set_greeting' annotations are consistent annotation_checker · 80%
info
Tool 'meta_publish_page_reel' annotations are consistent annotation_checker · 80%
info
Tool 'meta_cross_post' annotations are consistent annotation_checker · 80%
info
Tool 'meta_search_ad_library' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_account_insights' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_campaign_insights' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_adset_insights' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_ad_insights' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_product_catalogs' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_product_catalog' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_products' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_product' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_product' annotations are consistent annotation_checker · 80%
info
Tool 'meta_update_product' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_product' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_product_sets' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_product_feeds' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_product_feed' annotations are consistent annotation_checker · 80%
info
Tool 'threads_get_profile' annotations are consistent annotation_checker · 80%
info
Tool 'threads_get_posts' annotations are consistent annotation_checker · 80%
info
Tool 'threads_publish_text' annotations are consistent annotation_checker · 80%
info
Tool 'threads_publish_image' annotations are consistent annotation_checker · 80%
info
Tool 'threads_publish_video' annotations are consistent annotation_checker · 80%
info
Tool 'threads_publish_carousel' annotations are consistent annotation_checker · 80%
info
Tool 'threads_delete_post' annotations are consistent annotation_checker · 80%
info
Tool 'threads_get_replies' annotations are consistent annotation_checker · 80%
info
Tool 'threads_hide_reply' annotations are consistent annotation_checker · 80%
info
Tool 'threads_get_post_insights' annotations are consistent annotation_checker · 80%
info
Tool 'threads_get_user_insights' annotations are consistent annotation_checker · 80%
info
Tool 'threads_check_rate_limits' annotations are consistent annotation_checker · 80%
info
Tool 'threads_get_post' annotations are consistent annotation_checker · 80%
info
Tool 'threads_get_conversation' annotations are consistent annotation_checker · 80%
info
Tool 'threads_get_mentions' annotations are consistent annotation_checker · 80%
info
Tool 'threads_get_media_children' annotations are consistent annotation_checker · 80%
info
Tool 'threads_repost' annotations are consistent annotation_checker · 80%
info
Tool 'threads_search' annotations are consistent annotation_checker · 80%
info
Tool 'threads_publish_gif' annotations are consistent annotation_checker · 80%
info
Tool 'threads_publish_link' annotations are consistent annotation_checker · 80%
info
Tool 'threads_get_followers' annotations are consistent annotation_checker · 80%
info
Tool 'threads_get_following' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_instagram_accounts' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_media' annotations are consistent annotation_checker · 80%
info
Tool 'meta_publish_instagram_photo' annotations are consistent annotation_checker · 80%
info
Tool 'meta_publish_instagram_reel' annotations are consistent annotation_checker · 80%
info
Tool 'meta_publish_instagram_story' annotations are consistent annotation_checker · 80%
info
Tool 'meta_publish_instagram_carousel' annotations are consistent annotation_checker · 80%
info
Tool 'meta_check_instagram_publishing_limit' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_account_insights' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_media_insights' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_comments' annotations are consistent annotation_checker · 80%
info
Tool 'meta_reply_instagram_comment' annotations are consistent annotation_checker · 80%
info
Tool 'meta_search_instagram_hashtag' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_user' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_stories' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_instagram_media' annotations are consistent annotation_checker · 80%
info
Tool 'meta_toggle_instagram_comments' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_instagram_comment' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_comment_replies' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_media_children' annotations are consistent annotation_checker · 80%
info
Tool 'meta_check_instagram_container' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_mentioned_media' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_recent_hashtags' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_live_media' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_product_tags' annotations are consistent annotation_checker · 80%
info
Tool 'meta_publish_instagram_container' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_single_media' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_conversations' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_messages' annotations are consistent annotation_checker · 80%
info
Tool 'meta_send_instagram_message' annotations are consistent annotation_checker · 80%
info
Tool 'meta_send_instagram_media_message' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_broadcast_channels' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_broadcast_channel_messages' annotations are consistent annotation_checker · 80%
info
Tool 'meta_send_broadcast_channel_message' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_broadcast_channel_poll' annotations are consistent annotation_checker · 80%
info
Tool 'meta_hide_instagram_comment' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_instagram_available_catalogs' annotations are consistent annotation_checker · 80%
info
Tool 'meta_search_instagram_catalog_products' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_ad_accounts' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_campaigns' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_campaign' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_campaign' annotations are consistent annotation_checker · 80%
info
Tool 'meta_update_campaign' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_campaign' annotations are consistent annotation_checker · 80%
info
Tool 'meta_migrate_campaign_to_advantage_plus' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_adsets' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_adset' annotations are consistent annotation_checker · 80%
info
Tool 'meta_update_adset' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_ads' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_ad' annotations are consistent annotation_checker · 80%
info
Tool 'meta_update_ad' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_ad_creatives' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_ad_creative' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_ad_preview' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_ad' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_adset' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_ad_account_users' annotations are consistent annotation_checker · 80%
info
Tool 'meta_upload_ad_image' annotations are consistent annotation_checker · 80%
info
Tool 'meta_search_targeting_interests' annotations are consistent annotation_checker · 80%
info
Tool 'meta_search_targeting_geolocations' annotations are consistent annotation_checker · 80%
info
Tool 'meta_search_targeting_demographics' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_reach_estimate' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_delivery_estimate' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_pixels' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_pixel' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_pixel' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_pixel_stats' annotations are consistent annotation_checker · 80%
info
Tool 'meta_update_pixel' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_pixel' annotations are consistent annotation_checker · 80%
info
Tool 'meta_share_pixel' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_custom_conversions' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_custom_conversion' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_saved_audiences' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_ad_rules' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_ad_labels' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_ad_label' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_ad_videos' annotations are consistent annotation_checker · 80%
info
Tool 'meta_upload_ad_video' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_ad_account_activity' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_ad_account' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_adset' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_ad' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_ad_creative' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_ad_rule' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_ad_rule' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_ad_images' annotations are consistent annotation_checker · 80%
info
Tool 'meta_browse_targeting_categories' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_saved_audience' annotations are consistent annotation_checker · 80%
info
Tool 'meta_delete_saved_audience' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_business_assets' annotations are consistent annotation_checker · 80%
info
Tool 'meta_create_ad_study' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_ad_studies' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_ad_studies' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_ad_study_results' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_leadgen_forms' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_leadgen_leads' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_ad_rule' annotations are consistent annotation_checker · 80%
info
Tool 'meta_get_minimum_budgets' annotations are consistent annotation_checker · 80%
info
Tool 'meta_list_offline_event_sets' annotations are consistent annotation_checker · 80%
info
Tool 'meta_send_offline_event' annotations are consistent annotation_checker · 80%
info
Tool 'meta_debug_token' annotations are consistent annotation_checker · 80%
info
Tool 'meta_health_check' annotations are consistent annotation_checker · 80%
info
Sandbox failed to start for behavioral verification behavioral_verifier · 100%
medium
Vulnerable dependency: @modelcontextprotocol/sdk@1.6.1 (GHSA-8r9q-7v3j-jr4g) dependency_analyzer · 95%
medium
Vulnerable dependency: @modelcontextprotocol/sdk@1.6.1 (GHSA-w48q-cv73-mx4w) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-35jp-ww65-95wh) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-3g43-6gmg-66jw) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-3p68-rc4w-qgx5) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-3w6x-2g7m-8v23) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-42h9-826w-cgv3) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-43fc-jf86-j433) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-445q-vr5w-6q77) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-4hjh-wcwx-xvwj) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-5c9x-8gcm-mpgx) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-62hf-57xw-28j9) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-6chq-wfr3-2hj9) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-777c-7fjr-54vf) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-7q8q-rj6j-mhjq) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-898c-q2cr-xwhg) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-fvcv-3m26-pcqx) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-hfxv-24rg-xrqf) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-j5f8-grm9-p9fc) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-jqh4-m9w3-8hp9) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-jr5f-v2jv-69x6) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-m7pr-hjqh-92cm) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-mmx7-hfxf-jppx) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-p92q-9vqr-4j8v) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-pf86-5x62-jrwf) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-pmv8-rq9r-6j72) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-pmwg-cvhr-8vh7) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-q8qp-cvcw-x6jj) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-vf2m-468p-8v99) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-w9j2-pvgh-6h63) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-xhjh-pmcv-23jw) dependency_analyzer · 95%
medium
Vulnerable dependency: axios@1.7.9 (GHSA-xx6v-rp6x-q39c) dependency_analyzer · 95%
info
package.json metadata manifest_parser · 100%
info
Tool: meta_list_custom_audiences manifest_parser · 85%
info
Tool: meta_get_custom_audience manifest_parser · 85%
info
Tool: meta_create_custom_audience manifest_parser · 85%
info
Tool: meta_create_lookalike_audience manifest_parser · 85%
info
Tool: meta_delete_custom_audience manifest_parser · 85%
info
Tool: meta_get_page_fan_demographics manifest_parser · 85%
info
Tool: meta_generate_chart manifest_parser · 85%
info
Tool: meta_generate_comparison_chart manifest_parser · 85%
info
Tool: meta_send_conversion_event manifest_parser · 85%
info
Tool: meta_test_conversion_events manifest_parser · 85%
info
Tool: meta_list_pages manifest_parser · 85%
info
Tool: meta_get_page manifest_parser · 85%
info
Tool: meta_get_post_reactions manifest_parser · 85%
info
Tool: meta_create_post manifest_parser · 85%
info
Tool: meta_get_posts manifest_parser · 85%
info
Tool: meta_delete_post manifest_parser · 85%
info
Tool: meta_create_photo_post manifest_parser · 85%
info
Tool: meta_create_video_post manifest_parser · 85%
info
Tool: meta_get_page_conversations manifest_parser · 85%
info
Tool: meta_get_conversation_messages manifest_parser · 85%
info
Tool: meta_send_page_message manifest_parser · 85%
info
Tool: meta_get_page_insights manifest_parser · 85%
info
Tool: meta_update_post manifest_parser · 85%
info
Tool: meta_get_post_insights manifest_parser · 85%
info
Tool: meta_update_page manifest_parser · 85%
info
Tool: meta_get_post_comments manifest_parser · 85%
info
Tool: meta_reply_post_comment manifest_parser · 85%
info
Tool: meta_delete_comment manifest_parser · 85%
info
Tool: meta_like_object manifest_parser · 85%
info
Tool: meta_get_scheduled_posts manifest_parser · 85%
info
Tool: meta_get_page_albums manifest_parser · 85%
info
Tool: meta_get_page_events manifest_parser · 85%
info
Tool: meta_get_page_tagged manifest_parser · 85%
info
Tool: meta_get_page_videos manifest_parser · 85%
info
Tool: meta_get_visitor_posts manifest_parser · 85%
info
Tool: meta_get_published_posts manifest_parser · 85%
info
Tool: meta_get_blocked_users manifest_parser · 85%
info
Tool: meta_block_user manifest_parser · 85%
info
Tool: meta_get_page_tabs manifest_parser · 85%
info
Tool: meta_get_page_picture manifest_parser · 85%
info
Tool: meta_get_post manifest_parser · 85%
info
Tool: meta_create_event manifest_parser · 85%
info
Tool: meta_get_page_locations manifest_parser · 85%
info
Tool: meta_get_page_cta manifest_parser · 85%
info
Tool: meta_get_page_photos manifest_parser · 85%
info
Tool: meta_get_page_ratings manifest_parser · 85%
info
Tool: meta_subscribe_page_webhooks manifest_parser · 85%
info
Tool: meta_get_promotable_posts manifest_parser · 85%
info
Tool: meta_update_page_picture manifest_parser · 85%
info
Tool: meta_update_page_cover manifest_parser · 85%
info
Tool: meta_hide_comment manifest_parser · 85%
info
Tool: meta_publish_page_story manifest_parser · 85%
info
Tool: meta_create_live_video manifest_parser · 85%
info
Tool: meta_get_live_videos manifest_parser · 85%
info
Tool: meta_end_live_video manifest_parser · 85%
info
Tool: meta_get_page_automated_responses manifest_parser · 85%
info
Tool: meta_set_instant_reply manifest_parser · 85%
info
Tool: meta_set_away_message manifest_parser · 85%
info
Tool: meta_set_greeting manifest_parser · 85%
info
Tool: meta_publish_page_reel manifest_parser · 85%
info
Tool: meta_cross_post manifest_parser · 85%
info
Tool: meta_search_ad_library manifest_parser · 85%
info
Tool: meta_create_product manifest_parser · 85%
info
Tool: meta_get_account_insights manifest_parser · 85%
info
Tool: meta_get_campaign_insights manifest_parser · 85%
info
Tool: meta_get_adset_insights manifest_parser · 85%
info
Tool: meta_get_ad_insights manifest_parser · 85%
info
Tool: meta_list_product_catalogs manifest_parser · 85%
info
Tool: meta_get_product_catalog manifest_parser · 85%
info
Tool: meta_list_products manifest_parser · 85%
info
Tool: meta_get_product manifest_parser · 85%
info
Tool: meta_update_product manifest_parser · 85%
info
Tool: meta_delete_product manifest_parser · 85%
info
Tool: meta_list_product_sets manifest_parser · 85%
info
Tool: meta_list_product_feeds manifest_parser · 85%
info
Tool: meta_create_product_feed manifest_parser · 85%
info
Tool: threads_get_profile manifest_parser · 85%
info
Tool: threads_get_posts manifest_parser · 85%
info
Tool: threads_publish_text manifest_parser · 85%
info
Tool: threads_publish_image manifest_parser · 85%
info
Tool: threads_publish_video manifest_parser · 85%
info
Tool: threads_publish_carousel manifest_parser · 85%
info
Tool: threads_delete_post manifest_parser · 85%
info
Tool: threads_get_replies manifest_parser · 85%
info
Tool: threads_hide_reply manifest_parser · 85%
info
Tool: threads_get_post_insights manifest_parser · 85%
info
Tool: threads_get_user_insights manifest_parser · 85%
info
Tool: threads_check_rate_limits manifest_parser · 85%
info
Tool: threads_get_post manifest_parser · 85%
info
Tool: threads_get_conversation manifest_parser · 85%
info
Tool: threads_get_mentions manifest_parser · 85%
info
Tool: threads_get_media_children manifest_parser · 85%
info
Tool: threads_repost manifest_parser · 85%
info
Tool: threads_search manifest_parser · 85%
info
Tool: threads_publish_gif manifest_parser · 85%
info
Tool: threads_publish_link manifest_parser · 85%
info
Tool: threads_get_followers manifest_parser · 85%
info
Tool: threads_get_following manifest_parser · 85%
info
Tool: meta_list_instagram_accounts manifest_parser · 85%
info
Tool: meta_get_instagram_media manifest_parser · 85%
info
Tool: meta_publish_instagram_photo manifest_parser · 85%
info
Tool: meta_publish_instagram_reel manifest_parser · 85%
info
Tool: meta_publish_instagram_story manifest_parser · 85%
info
Tool: meta_publish_instagram_carousel manifest_parser · 85%
info
Tool: meta_check_instagram_publishing_limit manifest_parser · 85%
info
Tool: meta_get_instagram_account_insights manifest_parser · 85%
info
Tool: meta_get_instagram_media_insights manifest_parser · 85%
info
Tool: meta_get_instagram_comments manifest_parser · 85%
info
Tool: meta_reply_instagram_comment manifest_parser · 85%
info
Tool: meta_search_instagram_hashtag manifest_parser · 85%
info
Tool: meta_get_instagram_user manifest_parser · 85%
info
Tool: meta_get_instagram_stories manifest_parser · 85%
info
Tool: meta_delete_instagram_media manifest_parser · 85%
info
Tool: meta_toggle_instagram_comments manifest_parser · 85%
info
Tool: meta_delete_instagram_comment manifest_parser · 85%
info
Tool: meta_get_instagram_comment_replies manifest_parser · 85%
info
Tool: meta_get_instagram_media_children manifest_parser · 85%
info
Tool: meta_check_instagram_container manifest_parser · 85%
info
Tool: meta_get_instagram_mentioned_media manifest_parser · 85%
info
Tool: meta_get_instagram_recent_hashtags manifest_parser · 85%
info
Tool: meta_get_instagram_live_media manifest_parser · 85%
info
Tool: meta_get_instagram_product_tags manifest_parser · 85%
info
Tool: meta_publish_instagram_container manifest_parser · 85%
info
Tool: meta_get_instagram_single_media manifest_parser · 85%
info
Tool: meta_get_instagram_conversations manifest_parser · 85%
info
Tool: meta_get_instagram_messages manifest_parser · 85%
info
Tool: meta_send_instagram_message manifest_parser · 85%
info
Tool: meta_send_instagram_media_message manifest_parser · 85%
info
Tool: meta_get_instagram_broadcast_channels manifest_parser · 85%
info
Tool: meta_get_broadcast_channel_messages manifest_parser · 85%
info
Tool: meta_send_broadcast_channel_message manifest_parser · 85%
info
Tool: meta_create_broadcast_channel_poll manifest_parser · 85%
info
Tool: meta_hide_instagram_comment manifest_parser · 85%
info
Tool: meta_delete_ad manifest_parser · 85%
info
Tool: meta_get_instagram_available_catalogs manifest_parser · 85%
info
Tool: meta_search_instagram_catalog_products manifest_parser · 85%
info
Tool: meta_list_ad_accounts manifest_parser · 85%
info
Tool: meta_list_campaigns manifest_parser · 85%
info
Tool: meta_get_campaign manifest_parser · 85%
info
Tool: meta_create_campaign manifest_parser · 85%
info
Tool: meta_update_campaign manifest_parser · 85%
info
Tool: meta_delete_campaign manifest_parser · 85%
info
Tool: meta_migrate_campaign_to_advantage_plus manifest_parser · 85%
info
Tool: meta_list_adsets manifest_parser · 85%
info
Tool: meta_create_adset manifest_parser · 85%
info
Tool: meta_update_adset manifest_parser · 85%
info
Tool: meta_list_ads manifest_parser · 85%
info
Tool: meta_create_ad manifest_parser · 85%
info
Tool: meta_update_ad manifest_parser · 85%
info
Tool: meta_list_ad_creatives manifest_parser · 85%
info
Tool: meta_create_ad_creative manifest_parser · 85%
info
Tool: meta_get_ad_preview manifest_parser · 85%
info
Tool: meta_delete_adset manifest_parser · 85%
info
Tool: meta_get_ad_account_users manifest_parser · 85%
info
Tool: meta_upload_ad_image manifest_parser · 85%
info
Tool: meta_search_targeting_interests manifest_parser · 85%
info
Tool: meta_search_targeting_geolocations manifest_parser · 85%
info
Tool: meta_search_targeting_demographics manifest_parser · 85%
info
Tool: meta_get_reach_estimate manifest_parser · 85%
info
Tool: meta_get_delivery_estimate manifest_parser · 85%
info
Tool: meta_list_pixels manifest_parser · 85%
info
Tool: meta_create_pixel manifest_parser · 85%
info
Tool: meta_get_pixel manifest_parser · 85%
info
Tool: meta_upload_ad_video manifest_parser · 85%
info
Tool: meta_get_pixel_stats manifest_parser · 85%
info
Tool: meta_update_pixel manifest_parser · 85%
info
Tool: meta_delete_pixel manifest_parser · 85%
info
Tool: meta_share_pixel manifest_parser · 85%
info
Tool: meta_list_custom_conversions manifest_parser · 85%
info
Tool: meta_create_custom_conversion manifest_parser · 85%
info
Tool: meta_list_saved_audiences manifest_parser · 85%
info
Tool: meta_list_ad_rules manifest_parser · 85%
info
Tool: meta_list_ad_labels manifest_parser · 85%
info
Tool: meta_create_ad_label manifest_parser · 85%
info
Tool: meta_list_ad_videos manifest_parser · 85%
info
Tool: meta_get_ad_account_activity manifest_parser · 85%
info
Tool: meta_get_ad_account manifest_parser · 85%
info
Tool: meta_get_adset manifest_parser · 85%
info
Tool: meta_get_ad manifest_parser · 85%
info
Tool: meta_get_ad_creative manifest_parser · 85%
info
Tool: meta_create_ad_rule manifest_parser · 85%
info
Tool: meta_delete_ad_rule manifest_parser · 85%
info
Tool: meta_list_ad_images manifest_parser · 85%
info
Tool: meta_browse_targeting_categories manifest_parser · 85%
info
Tool: meta_create_saved_audience manifest_parser · 85%
info
Tool: meta_delete_saved_audience manifest_parser · 85%
info
Tool: meta_list_business_assets manifest_parser · 85%
info
Tool: meta_create_ad_study manifest_parser · 85%
info
Tool: meta_get_ad_studies manifest_parser · 85%
info
Tool: meta_list_ad_studies manifest_parser · 85%
info
Tool: meta_get_ad_study_results manifest_parser · 85%
info
Tool: meta_list_leadgen_forms manifest_parser · 85%
info
Tool: meta_get_leadgen_leads manifest_parser · 85%
info
Tool: meta_get_ad_rule manifest_parser · 85%
info
Tool: meta_get_minimum_budgets manifest_parser · 85%
info
Tool: meta_list_offline_event_sets manifest_parser · 85%
info
Tool: meta_send_offline_event manifest_parser · 85%
info
Tool: meta_debug_token manifest_parser · 85%
info
Tool: meta_health_check manifest_parser · 85%
info
Transport: stdio manifest_parser · 90%
info
Required env vars (7) manifest_parser · 80%
info
Sandbox failed to start for output poisoning scan output_poisoning · 100%
low
Permission: filesystem access detected permission_analyzer · 90%
high
Permission: shell access detected permission_analyzer · 95%
low
Permission: env_vars access detected permission_analyzer · 90%
info
SBOM generated: 210 components sbom_generator · 100%
medium
No build provenance detected (SLSA L0) slsa_assessor · 90%