### Organize Files by Type using organize-tool Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Automatically organizes downloaded files into specific directories based on their file extensions. This script requires the 'organize-tool' to be installed via pip. ```bash # Install organize-tool sudo pip3 install organize-tool # Run organize with rules for content management organize run --rules ' rules: - name: "Move images" locations: - "/home/ubuntu/Downloads/*" filters: - extension: jpg, png, jpeg actions: - move: "/home/ubuntu/facebook_content/images/" - name: "Move videos" locations: - "/home/ubuntu/Downloads/*" filters: - extension: mp4, mov actions: - move: "/home/ubuntu/facebook_content/videos/" - name: "Move drafts" locations: - "/home/ubuntu/Downloads/*" filters: - extension: md, txt, docx actions: - move: "/home/ubuntu/facebook_content/drafts/" ' ``` -------------------------------- ### Facebook MCP - Get Post Insights Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Retrieves performance metrics for a specific Facebook post. Requires the post ID and a comma-separated list of metrics (e.g., 'post_impressions,post_engaged_users,post_clicks'). ```bash # Get insights for a specific post manus-mcp-cli tool call facebook_get_post_insights \ --server facebook \ --input '{ "post_id": "123456789_987654321", "metric": "post_impressions,post_engaged_users,post_clicks" }' ``` -------------------------------- ### Facebook MCP - Get Page Insights Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Retrieves performance analytics for a Facebook Page. Requires the page ID and the desired metric (e.g., 'page_post_engagements') and a time period (e.g., 'week'). Returns insights data. ```bash # Get weekly page engagement metrics manus-mcp-cli tool call facebook_get_page_insights \ --server facebook \ --input '{ "page_id": "YOUR_PAGE_ID", "metric": "page_post_engagements", "period": "week" }' # Expected response: # { # "data": [ # { "name": "page_post_engagements", "period": "week", "values": [{"value": 1523}] } # ] # } ``` -------------------------------- ### Facebook MCP - Get Comments Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Retrieves comments from a specific Facebook post. Requires the post ID and an optional limit for the number of comments to fetch. Used for engagement management. ```bash # Get comments on a post manus-mcp-cli tool call facebook_get_comments \ --server facebook \ --input '{ "post_id": "123456789_987654321", "limit": 50 }' ``` -------------------------------- ### Backup Content to Google Drive using rclone Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Performs backup and synchronization of local content files to a Google Drive remote using the rclone utility. Requires rclone configuration and a specified Google Drive remote name. ```bash # Backup all facebook content to Google Drive rclone copy /home/ubuntu/facebook_content \ manus_google_drive:facebook_automation_backup \ --config /home/ubuntu/.gdrive-rclone.ini # Sync with deletion of removed files rclone sync /home/ubuntu/facebook_content \ manus_google_drive:facebook_automation_backup \ --config /home/ubuntu/.gdrive-rclone.ini ``` -------------------------------- ### Analyze Meta Ads Campaigns using Python Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Analyzes Facebook/Meta advertising campaign performance and generates optimization recommendations using a Python script. Requires the campaign ID and an output file path. ```python # Analyze ad campaign performance python3 /home/ubuntu/skills/meta-ads-analyzer/analyze.py \ --campaign_id YOUR_CAMPAIGN_ID \ --output_file /home/ubuntu/facebook_content/reports/ads_analysis.md ``` -------------------------------- ### Facebook MCP - Create Video Post Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Uploads and publishes a video to a Facebook Page. Requires the page ID, a URL to the video file, and a description for the video. Suitable for sharing video content. ```bash # Create a video post manus-mcp-cli tool call facebook_create_video_post \ --server facebook \ --input '{ "page_id": "YOUR_PAGE_ID", "video_url": "https://example.com/tourism-video.mp4", "description": "วิดีโอพาเที่ยวธรรมชาติวังสามหมอ" }' ``` -------------------------------- ### Generate Facebook Page Reports using Python Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Generates performance reports for Facebook pages using a Python script. Supports weekly and monthly reports, with an option to include recommendations. Requires the page ID and an output file path. ```python # Generate weekly performance report python3 /home/ubuntu/skills/facebook-page-reporter/generate_report.py \ --page_id YOUR_PAGE_ID \ --output_file /home/ubuntu/facebook_content/reports/weekly_report.md \ --period week # Generate monthly report with recommendations python3 /home/ubuntu/skills/facebook-page-reporter/generate_report.py \ --page_id YOUR_PAGE_ID \ --output_file /home/ubuntu/facebook_content/reports/monthly_report.md \ --period month \ --include_recommendations ``` -------------------------------- ### Facebook MCP - Create Text Post Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Creates a new post on a Facebook Page with text content and optional link. Requires page ID and message content. The link can be a URL to an image or other content. ```bash # Create a text post on Facebook Page manus-mcp-cli tool call facebook_create_post \ --server facebook \ --input '{ "page_id": "YOUR_PAGE_ID", "message": "หลีกหนีความวุ่นวาย มาสัมผัสความงามที่ซ่อนเร้นของ น้ำตกผาแดง วังสามหมอ! 🏞️ #วังสามหมอ #ท่องเที่ยวอุดร #แหล่งท่องเที่ยวลับ", "link": "https://example.com/waterfall-photo.jpg" }' # Expected response: # { "id": "123456789_987654321", "post_url": "https://facebook.com/" } ``` -------------------------------- ### Facebook MCP - Create Photo Post Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Publishes a photo post to a Facebook Page. Requires the page ID, a URL to the photo, and a caption for the post. This is useful for sharing visual content. ```bash # Create a photo post with image upload manus-mcp-cli tool call facebook_create_photo_post \ --server facebook \ --input '{ "page_id": "YOUR_PAGE_ID", "photo_url": "https://example.com/nature-scenery.jpg", "caption": "เปิดวาร์ป! แหล่งท่องเที่ยวลับ น้ำตกผาแดง วังสามหมอ #ธรรมชาติบำบัด #เที่ยวไทย" }' ``` -------------------------------- ### Firecrawl - Search Trends Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Searches the web for trending topics and content ideas using Firecrawl. Requires a search query. Returns a list of results including title, URL, and snippet. ```bash # Search for local tourism trends manus-mcp-cli tool call firecrawl_search \ --server firecrawl \ --input '{ "query": "แหล่งท่องเที่ยวลับ วังสามหมอ อุดรธานี" }' # Expected response: # { # "results": [ # { "title": "...", "url": "...", "snippet": "..." } # ] # } ``` -------------------------------- ### Canva - Generate Design Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Creates graphic designs for social media posts using Canva integration. Requires a query describing the desired design and the template type (e.g., 'facebook_post'). ```bash # Generate a design for tourism content manus-mcp-cli tool call generate_design \ --server canva \ --input '{ "query": "ภาพประกอบแหล่งท่องเที่ยวธรรมชาติ วังสามหมอ", "template_type": "facebook_post" }' ``` -------------------------------- ### Send LINE Notification using manus-mcp-cli Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Sends a text message notification to a specified LINE user using the manus-mcp-cli tool. Requires the server to be configured for LINE and a destination user ID. ```bash manus-mcp-cli tool call push_text_message \ --server line \ --input '{ \ "to": "DESTINATION_USER_ID", \ "messages": [ \ { \ "type": "text", \ "text": "สวัสดีครับ สนใจข้อมูลท่องเที่ยววังสามหมอส่วนไหนเป็นพิเศษครับ?" \ } \ ] \ }' ``` -------------------------------- ### Facebook MCP - Create Comment Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Posts a reply comment on a Facebook post or to an existing comment. Requires the post ID and the message content. Essential for managing user interactions. ```bash # Reply to a comment or post manus-mcp-cli tool call facebook_create_comment \ --server facebook \ --input '{ "post_id": "123456789_987654321", "message": "ขอบคุณที่ติดตามครับ! ยินดีต้อนรับสู่วังสามหมอเสมอ 🙏" }' ``` -------------------------------- ### LINE MCP - Push Message Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Sends push notifications via LINE. This functionality is intended for cross-platform engagement but the specific command and parameters are not detailed in the provided text. ```bash # Sends push notifications via LINE for cross-platform engagement. # The specific command and parameters are not detailed in the provided text. ``` -------------------------------- ### Facebook MCP - Send Message Source: https://context7.com/kritsanan1/fb-automation-wang/llms.txt Sends a direct message through Facebook Messenger to a specific user. Requires the recipient's user ID and the message content. Used for direct customer engagement. ```bash # Send a private message manus-mcp-cli tool call facebook_send_message \ --server facebook \ --input '{ "recipient_id": "USER_ID", "message": "สวัสดีครับ ขอบคุณที่สนใจท่องเที่ยววังสามหมอ มีอะไรให้ช่วยเหลือครับ?" }' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.