Buildwithclaude linkedin-automation
Automate LinkedIn tasks via Rube MCP (Composio): create posts, manage profile, company info, comments, and image uploads. Always search tools first for current schemas.
git clone https://github.com/davepoon/buildwithclaude
T=$(mktemp -d) && git clone --depth=1 https://github.com/davepoon/buildwithclaude "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/all-skills/skills/linkedin-automation" ~/.claude/skills/davepoon-buildwithclaude-linkedin-automation && rm -rf "$T"
plugins/all-skills/skills/linkedin-automation/SKILL.mdLinkedIn Automation via Rube MCP
Automate LinkedIn operations through Composio's LinkedIn toolkit via Rube MCP.
Toolkit docs: composio.dev/toolkits/linkedin
Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active LinkedIn connection via
with toolkitRUBE_MANAGE_CONNECTIONSlinkedin - Always call
first to get current tool schemasRUBE_SEARCH_TOOLS
Setup
Get Rube MCP: Add
https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
respondsRUBE_SEARCH_TOOLS - Call
with toolkitRUBE_MANAGE_CONNECTIONSlinkedin - If connection is not ACTIVE, follow the returned auth link to complete LinkedIn OAuth
- Confirm connection status shows ACTIVE before running any workflows
Core Workflows
1. Create a LinkedIn Post
When to use: User wants to publish a text post on LinkedIn
Tool sequence:
- Get authenticated user's profile info [Prerequisite]LINKEDIN_GET_MY_INFO
- Register image upload if post includes an image [Optional]LINKEDIN_REGISTER_IMAGE_UPLOAD
- Publish the post [Required]LINKEDIN_CREATE_LINKED_IN_POST
Key parameters:
: Post content texttext
: 'PUBLIC' or 'CONNECTIONS'visibility
: Title for attached mediamedia_title
: Description for attached mediamedia_description
Pitfalls:
- Must retrieve user profile URN via GET_MY_INFO before creating a post
- Image uploads require a two-step process: register upload first, then include the asset in the post
- Post text has character limits enforced by LinkedIn API
- Visibility defaults may vary; always specify explicitly
2. Get Profile Information
When to use: User wants to retrieve their LinkedIn profile or company details
Tool sequence:
- Get authenticated user's profile [Required]LINKEDIN_GET_MY_INFO
- Get company page details [Optional]LINKEDIN_GET_COMPANY_INFO
Key parameters:
- No parameters needed for GET_MY_INFO (uses authenticated user)
: Company/organization ID for GET_COMPANY_INFOorganization_id
Pitfalls:
- GET_MY_INFO returns the authenticated user only; cannot look up other users
- Company info requires the numeric organization ID, not the company name or vanity URL
- Some profile fields may be restricted based on OAuth scopes granted
3. Manage Post Images
When to use: User wants to upload and attach images to LinkedIn posts
Tool sequence:
- Register an image upload with LinkedIn [Required]LINKEDIN_REGISTER_IMAGE_UPLOAD- Upload the image binary to the returned upload URL [Required]
- Verify uploaded image status [Optional]LINKEDIN_GET_IMAGES
- Create post with the image asset [Required]LINKEDIN_CREATE_LINKED_IN_POST
Key parameters:
: URN of the image owner (user or organization)owner
: ID of the uploaded image for GET_IMAGESimage_id
Pitfalls:
- The upload is a two-phase process: register then upload binary
- Image asset URN from registration must be used when creating the post
- Supported formats typically include JPG, PNG, and GIF
- Large images may take time to process before they are available
4. Comment on Posts
When to use: User wants to comment on an existing LinkedIn post
Tool sequence:
- Add a comment to a post [Required]LINKEDIN_CREATE_COMMENT_ON_POST
Key parameters:
: The URN or ID of the post to comment onpost_id
: Comment contenttext
: URN of the commenter (user or organization)actor
Pitfalls:
- Post ID must be a valid LinkedIn URN format
- The actor URN must match the authenticated user or a managed organization
- Rate limits apply to comment creation; avoid rapid-fire comments
5. Delete a Post
When to use: User wants to remove a previously published LinkedIn post
Tool sequence:
- Delete the specified post [Required]LINKEDIN_DELETE_LINKED_IN_POST
Key parameters:
: The URN or ID of the post to deletepost_id
Pitfalls:
- Deletion is permanent and cannot be undone
- Only the post author or organization admin can delete a post
- The post_id must be the exact URN returned when the post was created
Common Patterns
ID Resolution
User URN from profile:
1. Call LINKEDIN_GET_MY_INFO 2. Extract user URN (e.g., 'urn:li:person:XXXXXXXXXX') 3. Use URN as actor/owner in subsequent calls
Organization ID from company:
1. Call LINKEDIN_GET_COMPANY_INFO with organization_id 2. Extract organization URN for posting as a company page
Image Upload Flow
- Call REGISTER_IMAGE_UPLOAD to get upload URL and asset URN
- Upload the binary image to the provided URL
- Use the asset URN when creating a post with media
- Verify with GET_IMAGES if upload status is uncertain
Known Pitfalls
Authentication:
- LinkedIn OAuth tokens have limited scopes; ensure required permissions are granted
- Tokens expire; re-authenticate if API calls return 401 errors
URN Formats:
- LinkedIn uses URN identifiers (e.g., 'urn:li:person:ABC123')
- Always use the full URN format, not just the alphanumeric ID portion
- Organization URNs differ from person URNs
Rate Limits:
- LinkedIn API has strict daily rate limits on post creation and comments
- Implement backoff strategies for bulk operations
- Monitor 429 responses and respect Retry-After headers
Content Restrictions:
- Posts have character limits enforced by the API
- Some content types (polls, documents) may require additional API features
- HTML markup in post text is not supported
Quick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| Get my profile | LINKEDIN_GET_MY_INFO | (none) |
| Create post | LINKEDIN_CREATE_LINKED_IN_POST | text, visibility |
| Get company info | LINKEDIN_GET_COMPANY_INFO | organization_id |
| Register image upload | LINKEDIN_REGISTER_IMAGE_UPLOAD | owner |
| Get uploaded images | LINKEDIN_GET_IMAGES | image_id |
| Delete post | LINKEDIN_DELETE_LINKED_IN_POST | post_id |
| Comment on post | LINKEDIN_CREATE_COMMENT_ON_POST | post_id, text, actor |
Powered by Composio