
Share posts and engage with your professional network
LINKEDIN CREATE ARTICLE OR URL SHARE
Tool to create an article or URL share on LinkedIn using the UGC Posts API. Use when you need to share a link with optional commentary on LinkedIn. Supports sharing URLs as articles with customizable visibility settings.
LINKEDIN CREATE COMMENT ON POST
Tool to create a first-level or nested comment on a LinkedIn share, UGC post, or parent comment via the Social Actions Comments API. Use when you need to engage with posts by adding comments or replying to existing comments. Supports text comments with optional @-mentions and image attachments.
LINKEDIN CREATE LINKED IN POST
Creates a new post on LinkedIn for the authenticated user or an organization they manage. Requires w_member_social scope for posting as a person, and w_organization_social scope for posting as an organization (with ADMINISTRATOR, DIRECT_SPONSORED_CONTENT_POSTER, or CONTENT_ADMIN role).
LINKEDIN DELETE LINKED IN POST
Deletes a specific LinkedIn post (share) by its unique `share_id`, which must correspond to an existing share.
LINKEDIN DELETE POST
Delete a LinkedIn post using the Posts API REST endpoint. Supports both ugcPost and share URN formats. The endpoint is idempotent - previously deleted posts return success (204).
LINKEDIN DELETE UGC POST
Delete a UGC post using the legacy UGC Post API endpoint. Use when you need to delete a post using the v2/ugcPosts endpoint. Deletion is idempotent - previously deleted posts also return success.
LINKEDIN DELETE UGC POSTS
Deletes a UGC post by its URN identifier. Use when you need to remove a UGC post from LinkedIn.
LINKEDIN GET AD TARGETING FACETS
Tool to retrieve available ad targeting facets from LinkedIn Marketing API. Use when you need to discover what targeting options are available for ad campaigns (e.g., locations, industries, job functions).
LINKEDIN GET AUDIENCE COUNTS
Retrieves audience size counts for specified targeting criteria. Use when estimating reach for LinkedIn ad campaigns or targeted content.
LINKEDIN GET COMPANY INFO
Retrieves organizations where the authenticated user has specific roles (ACLs), to determine their management or content posting capabilities for LinkedIn company pages.
LINKEDIN GET IMAGE
Tool to retrieve details of a LinkedIn image using its URN. Use when you need to check image status, get download URLs, or access image metadata for a single image.
LINKEDIN GET IMAGES
Tool to retrieve image metadata including download URLs, status, and dimensions from LinkedIn's Images API. Use when you need to access image details for posts, profiles, or media library assets.
LINKEDIN GET MY INFO
Fetches the authenticated LinkedIn user's profile information including name, headline, profile picture, and other profile details.
LINKEDIN GET NETWORK SIZE
Tool to retrieve the follower count for a LinkedIn organization. Use when you need to get the number of members following a specific company or organization on LinkedIn.
LINKEDIN GET ORG PAGE STATS
Tool to retrieve page statistics for a LinkedIn organization page. Use when you need engagement metrics like page views and custom button clicks. Supports both lifetime statistics (all-time data segmented by demographics) and time-bound statistics (aggregate data for specific time ranges). Requires rw_organization_admin permission with ADMINISTRATOR role for the organization.
LINKEDIN GET PERSON
Retrieves a LinkedIn member's profile information by their person ID. Returns lite profile fields (name, profile picture) by default, or basic profile fields (including headline and vanity name) with appropriate permissions.
LINKEDIN GET POST CONTENT
Tool to retrieve detailed post content including text, images, videos, and metadata from LinkedIn by post URN. Use when you need to fetch the full content and details of a specific LinkedIn post.
LINKEDIN GET SHARE STATS
Retrieves share statistics for a LinkedIn organization, including impressions, clicks, likes, comments, and shares. Use to analyze content performance for an organization page. Optionally filter by time intervals to get time-bound statistics.
LINKEDIN GET VIDEO
Tool to retrieve details of a LinkedIn video using its URN. Use when you need to check video status, get download URLs, or access video metadata.
LINKEDIN GET VIDEOS
Retrieves video metadata from LinkedIn Marketing API. Supports single video retrieval, batch retrieval (multiple videos), and finding videos by associated account with pagination. Use when you need to get video details including duration, dimensions, status, download URLs, and media library information.
LINKEDIN INITIALIZE IMAGE UPLOAD
Tool to initialize an image upload to LinkedIn and return a presigned upload URL plus the resulting image URN. Use when you need to prepare an image upload for LinkedIn posts. After calling this tool, upload the image bytes to the returned upload_url via PUT request, then use the image URN in CREATE_LINKED_IN_POST action.
LINKEDIN LIST REACTIONS
Retrieves reactions (likes, celebrations, etc.) on a LinkedIn entity such as a share, post, or comment. Use when you need to see who reacted to content and what type of reactions were used.
LINKEDIN REGISTER IMAGE UPLOAD
Tool to initialize a native LinkedIn image upload for feed shares and return a presigned upload URL plus the resulting digital media asset URN. Use when you need to upload an image to attach to a LinkedIn post. After calling this tool, upload the image bytes to the returned upload_url, then use the asset_urn in LINKEDIN_CREATE_LINKED_IN_POST.
LINKEDIN SEARCH AD TARGETING ENTITIES
Search for ad targeting entities using typeahead search. Use when you need to find targeting entities like geographic locations, job titles, industries, or other targeting criteria for LinkedIn ad campaigns.
LINKEDIN CUSTOM CREATE POST
Create a LinkedIn post with optional media (image, document, or article link). This unified tool handles all post types: - Text-only: Provide just commentary - Single image: Provide commentary + image_url - Multi-image carousel: Provide commentary + image_urls (list, max 20) - Document post: Provide commentary + document_url + document_title - Article/link post: Provide commentary + article_url Parameters: - commentary (str): Main text content (max 3000 chars). Supports @-mentions and hashtags. - visibility (str): 'PUBLIC' for everyone, 'CONNECTIONS' for 1st degree only - organization_id (str, optional): Organization URN to post on behalf of Image Fields: - image_url (str): URL of single image - image_urls (list[str]): List of image URLs for carousel (max 20, takes priority over image_url) - image_title (str, optional): Title for single-image posts Document Fields: - document_url (str): URL of PDF, PPT, etc. (publicly accessible) - document_title (str): Required title for the document Article Fields: - article_url (str): URL of webpage/article to share - article_title (str, optional): Custom preview title - article_description (str, optional): Custom preview description - thumbnail_url (str, optional): Custom thumbnail for preview Returns: - success: Whether the post was created - post_id: URN of the created post - url: Direct link to the post on LinkedIn - media_type: text, image, carousel, document, or article Example usage: - "Post about our launch" → text-only - "Share this image" → single image (image_url) - "Create carousel with these 5 photos" → carousel (image_urls) - "Post the quarterly report PDF" → document - "Share our blog article" → article
LINKEDIN CUSTOM ADD COMMENT
Add a comment to a LinkedIn post (share or ugcPost). Use this tool when the user wants to: - Comment on someone's LinkedIn post - Reply to a comment on a post - Engage with content in their network Parameters: - post_urn (str): URN of the post to comment on (e.g., 'urn:li:share:12345') - comment_text (str): The text content of the comment (max 1250 chars) - parent_comment_urn (str, optional): For nested replies, the parent comment URN Returns: - success: Whether the comment was added - comment_id: URN of the created comment - post_urn: URN of the post commented on Example usage: - "Comment 'Great insights!' on that post" - "Reply to the comment saying congratulations" - "Add my thoughts to the discussion"
LINKEDIN CUSTOM GET POST COMMENTS
Retrieve comments on a LinkedIn post. Use this tool when the user wants to: - See what people are saying about a post - Read the discussion on a LinkedIn share - Monitor engagement on their content Parameters: - post_urn (str): URN of the post to get comments from - count (int): Number of comments to retrieve (default: 10, max: 100) - start (int): Starting index for pagination (default: 0) Returns: - success: Whether comments were retrieved - comments: List of comments with author, text, and timestamps - total_count: Total number of comments on the post - post_urn: URN of the post Example usage: - "Show me the comments on my latest post" - "What are people saying about this article?" - "Get the discussion on that announcement"
LINKEDIN CUSTOM REACT TO POST
Add a reaction to a LinkedIn post. Use this tool when the user wants to: - Like a post on LinkedIn - React with celebrate, support, love, insightful, or funny - Engage with someone's content Parameters: - post_urn (str): URN of the post to react to - reaction_type (str): Type of reaction: - 'LIKE': Standard like - 'CELEBRATE': Celebration/clapping - 'SUPPORT': Heart/support - 'LOVE': Love reaction - 'INSIGHTFUL': Lightbulb/insight - 'FUNNY': Laughing reaction Returns: - success: Whether the reaction was added - post_urn: URN of the reacted post - reaction_type: Type of reaction added Example usage: - "Like that post about the product launch" - "React with celebrate to the promotion announcement" - "Add an insightful reaction to the industry analysis"
LINKEDIN CUSTOM DELETE REACTION
Remove your reaction from a LinkedIn post. Use this tool when the user wants to: - Unlike a post - Remove their reaction from content - Undo a previous reaction Parameters: - post_urn (str): URN of the post to remove reaction from Returns: - success: Whether the reaction was removed - post_urn: URN of the post REQUIRES USER CONSENT - This is a destructive action.
LINKEDIN CUSTOM GET POST REACTIONS
Retrieve reactions on a LinkedIn post. Use this tool when the user wants to: - See who reacted to a post - Get reaction counts and types - Analyze engagement on content Parameters: - post_urn (str): URN of the post to get reactions from - count (int): Number of reactions to retrieve (default: 10, max: 100) Returns: - success: Whether reactions were retrieved - reactions: List of reactions with reactor info and type - total_count: Total number of reactions - post_urn: URN of the post
LINKEDIN CUSTOM GATHER CONTEXT
Get LinkedIn context snapshot: authenticated user profile info and recent posts. Zero required parameters. Returns user identity information and up to 5 recent posts authored by the authenticated user.
GAIA connects to LinkedIn via MCP (Model Context Protocol) and exposes every action as a natural-language command. Tell GAIA what you want — it handles the rest, automatically.
Set up your LinkedIn automation in three simple steps — no code required.
Connect LinkedIn to GAIA
Open the GAIA Marketplace, find the LinkedIn integration, and click "Add to your GAIA". Authorise access in under two minutes — no code, no configuration files.
Tell GAIA what to automate in plain English
Describe the task in your own words: "summarise my LinkedIn activity every morning" or "notify me on Slack when a new social_media event happens". GAIA understands context and intent.
GAIA handles it automatically, 24/7
GAIA runs your LinkedIn automations in the background around the clock. No manual triggers, no scripts to maintain — just results delivered to you.
Everything you need to know about the GAIA LinkedIn integration.
LinkedIn is just one piece of the puzzle. GAIA integrates with 50+ tools across social_media, communication, productivity, and more — letting you build cross-tool automations in plain English without writing a single line of code.
Browse all integrations