From socials
Searches posts and content on X, LinkedIn, Reddit, and YouTube. Useful for social listening, brand monitoring, and topic research.
How this skill is triggered — by the user, by Claude, or both
Slash command
/socials:searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Search for posts, topics, and conversations across platforms.
Search for posts, topics, and conversations across platforms.
Check connection
socials_check_access
Get search parameters
Open the platform
socials_open_tab({ url: "[platform URL]" })
Execute search
On X:
socials_x_search({
query: "[keywords]",
type: "Latest" | "Top" | "People"
})
On LinkedIn:
socials_linkedin_posts_search({ query: "[keywords]" })
Or for people:
socials_linkedin_people_search({ keywords: "[name or title]" })
On Reddit: Navigate to the subreddit and use:
socials_get_feed({ platform: "reddit" })
On YouTube (search in the browser):
There is no separate MCP search tool. Build a results URL and open it (URL-encode the query, same idea as encodeURIComponent):
socials_open_tab({
url: "https://www.youtube.com/results?search_query=hello+kitty"
})
Use socials_navigate on the agent tab to change the search. Apply search filters with:
socials_apply_search_filters({
platform: "youtube",
filters: ["Videos", "This week", "HD"]
})
For a specific video page (/watch?v=...), use socials_get_page_content to extract video metadata plus comments.
socials_get_feed({ platform: "[platform]" })
For YouTube search results, call socials_get_page_content (optional limit, 1–80, default 40) to read video cards from the results page.
For YouTube watch pages, call socials_get_page_content with optional comment_sort (top or newest) and comments_limit to read fresh comments in that order.
Call socials_fetch_image for thumbnail URLs only when visual inspection materially improves the answer (comparison/detail checks). If text/URLs are enough, keep image URLs as text to reduce token usage.
Provide the search query after the command.
Examples:
/socials:search AI startups on X/socials:search product managers on LinkedIn/socials:search r/entrepreneurnpx claudepluginhub brainrot-creations/claude-plugins --plugin socialsSearches and analyzes Reddit discussions for market research, product feedback, and community insights using Xpoz. Useful for understanding public sentiment on products, brands, or topics.
Opens and reads social media feeds from X, LinkedIn, or Reddit, displaying recent posts with author, content preview, engagement stats, and post URLs.
Researches any topic using multi-platform web search for evidence gathering and structured synthesis. Loads automatically when investigation is needed.