Overview
The AnySite MCP Server provides 57 specialized tools for extracting and interacting with data across multiple social media platforms and web services. These tools are designed for comprehensive data extraction, search, and analysis workflows.
LinkedIn 24 tools Profile search, company data, posts, comments, reactions, and more
Instagram 8 tools Posts, comments, likes, user profiles, friendships, and reels
Twitter/X 5 tools User search, profiles, posts, and content extraction
Reddit 3 tools Post search, content extraction, and comment analysis
Web Parser 2 tools Webpage parsing and sitemap extraction
Other Google Search + ChatGPT Deep Research Web search and AI-powered research tools
Quick Navigation
Jump to specific tool categories:
ChatGPT Deep Research
These tools are only available in ChatGPT and are specifically designed for Deep Research mode. They are automatically filtered out for Claude Desktop and other clients.
search
Search for LinkedIn professionals with results optimized for Deep Research workflows.
Description : Search for LinkedIn professionals. Returns a list of matching profiles with basic information.
Parameters:
Parameter Type Required Default Description querystring ✅ Yes - Search query for finding LinkedIn professionals (job title, company, skills, etc)
Example:
{
"query" : "software engineer python"
}
Use Cases:
Initial research phase in ChatGPT Deep Research
Finding professionals by skills and experience
Building lists of potential contacts
fetch
Retrieve complete LinkedIn profile information by URL or ID.
Description : Retrieve complete LinkedIn profile information by profile URL or ID
Parameters:
Parameter Type Required Default Description idstring ✅ Yes - LinkedIn profile URL or username to fetch detailed information
Example:
{
"id" : "https://www.linkedin.com/in/john-doe"
}
Use Cases:
Deep dive into specific profiles during research
Following up on search results
Extracting complete profile data
Google Search
google_search
Simple Google search parser returning structured results.
Description : Simple Google search parser by query. Returns up to 20 results sorted by relevance.
Parameters:
Parameter Type Required Default Description Constraints querystring ✅ Yes - Search query (e.g., ‘python fastapi’) - countinteger ❌ Optional 10 Maximum number of results Min: 1, Max: 20 request_timeoutinteger ❌ Optional 300 Request timeout in seconds Min: 20, Max: 1500
Example:
{
"query" : "fastapi tutorial" ,
"count" : 15 ,
"request_timeout" : 300
}
Use Cases:
Web research and information gathering
Finding documentation and tutorials
Competitive intelligence
Content discovery
LinkedIn
LinkedIn is the most comprehensive category with 24 tools covering profiles, companies, posts, search, and engagement data.
Search & Discovery
search_linkedin_users
Search for LinkedIn users based on various criteria.
Description : Search for LinkedIn users based on various criteria
Parameters:
Parameter Type Required Default Description keywordsstring ❌ Optional - General search keywords first_namestring ❌ Optional - Filter by first name last_namestring ❌ Optional - Filter by last name titlestring ❌ Optional - Filter by job title company_keywordsstring ❌ Optional - Filter by company name school_keywordsstring ❌ Optional - Filter by school name locationstring ❌ Optional - Filter by location name countinteger ❌ Optional 10 Number of results request_timeoutinteger ❌ Optional 300 Request timeout in seconds
Example:
{
"keywords" : "software engineer" ,
"location" : "San Francisco" ,
"count" : 20
}
search_linkedin_companies
Search LinkedIn companies with advanced filtering options.
Description : Search LinkedIn companies
Parameters:
Parameter Type Required Default Description Constraints countinteger ✅ Yes - Max result count Max: 1000 keywordsstring ❌ Optional "" Any keyword for searching in the company page. For exact search put desired keywords into brackets - locationstring ❌ Optional [] Location URN or location name - industrystring ❌ Optional [] Industry URN or industry name - employee_countarray[string] ❌ Optional [] Employee count filter - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"keywords" : "software company" ,
"location" : "United States" ,
"count" : 100
}
search_linkedin_educations
Search educational institutions on LinkedIn.
Description : Search LinkedIn educations
Parameters:
Parameter Type Required Default Description Constraints namestring ✅ Yes - Education name - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"name" : "Stanford University" ,
"count" : 10
}
search_linkedin_industries
Search industries on LinkedIn.
Description : Search LinkedIn industries
Parameters:
Parameter Type Required Default Description Constraints namestring ✅ Yes - Industry name - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"name" : "Software" ,
"count" : 10
}
search_linkedin_locations
Search locations on LinkedIn for use in filters.
Description : Search LinkedIn locations
Parameters:
Parameter Type Required Default Description Constraints namestring ✅ Yes - Location name - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"name" : "San Francisco" ,
"count" : 10
}
User Profiles
get_linkedin_profile
Get detailed information about a LinkedIn profile including experience, education, and skills.
Description : Get detailed information about a LinkedIn profile
Parameters:
Parameter Type Required Default Description Constraints userstring ✅ Yes - LinkedIn profile URL or username - request_timeoutinteger ❌ Optional 300 Request timeout in seconds Min: 20, Max: 1500 with_experienceboolean ❌ Optional true Include experience data - with_educationboolean ❌ Optional true Include education data - with_skillsboolean ❌ Optional true Include skills data -
Example:
{
"user" : "https://www.linkedin.com/in/john-doe" ,
"with_experience" : true ,
"with_education" : true ,
"with_skills" : true
}
find_linkedin_user_email
Find LinkedIn user by email address.
Description : Find LinkedIn user email
Parameters:
Parameter Type Required Default Description Constraints emailstring ✅ Yes - Email to get user by email - countinteger ❌ Optional 5 Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"email" : "john.doe@example.com"
}
get_linkedin_user_email_db
Get LinkedIn user email from internal database.
Description : Get LinkedIn user email from database
Parameters:
Parameter Type Required Default Description Constraints profilestring ✅ Yes - LinkedIn internal_id, profile URL, alias, or set of them (max 10) - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"profile" : "https://www.linkedin.com/in/john-doe"
}
get_linkedin_user_posts
Get posts from a LinkedIn user profile.
Description : Get LinkedIn user posts
Parameters:
Parameter Type Required Default Description Constraints urnstring ✅ Yes - User URN (fsd_profile type) or user URL - countinteger ✅ Yes - Max result count - posted_afterstring ❌ Optional - Filter posts created after specified date (timestamp) - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"urn" : "urn:li:fsd_profile:ACoAAABCDEF" ,
"count" : 20
}
Get comments from a LinkedIn user.
Description : Get LinkedIn user comments
Parameters:
Parameter Type Required Default Description Constraints urnstring ✅ Yes - User URN (fsd_profile type only) - countinteger ✅ Yes - Max result count - commented_afterstring ❌ Optional - Filter comments created after specified date (timestamp) - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"urn" : "urn:li:fsd_profile:ACoAAABCDEF" ,
"count" : 50
}
get_linkedin_user_reactions
Get reactions from a LinkedIn user.
Description : Get LinkedIn user reactions
Parameters:
Parameter Type Required Default Description Constraints urnstring ✅ Yes - User URN (fsd_profile type only) - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"urn" : "urn:li:fsd_profile:ACoAAABCDEF" ,
"count" : 100
}
get_linkedin_company
Get comprehensive LinkedIn company information.
Description : Get LinkedIn company information
Parameters:
Parameter Type Required Default Description Constraints companystring ✅ Yes - Company Alias or URL or URN - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"company" : "https://www.linkedin.com/company/microsoft"
}
get_linkedin_company_employee_stats
Get employee statistics for a LinkedIn company.
Description : Get LinkedIn company employee statistics
Parameters:
Parameter Type Required Default Description Constraints urnstring ✅ Yes - Company URN - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"urn" : "urn:li:company:1234"
}
get_linkedin_company_employees
Get list of employees from a LinkedIn company.
Description : Get LinkedIn company employees
Parameters:
Parameter Type Required Default Description Constraints companiesarray[string] ✅ Yes - Company URNs - countinteger ✅ Yes - Max result count - keywordsstring ❌ Optional - Any keyword for searching in the user page - first_namestring ❌ Optional - Search for exact first name - last_namestring ❌ Optional - Search for exact last name - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"companies" : [ "urn:li:company:1234" ],
"count" : 50 ,
"keywords" : "engineer"
}
get_linkedin_company_posts
Get posts from a LinkedIn company page.
Description : Get LinkedIn company posts
Parameters:
Parameter Type Required Default Description Constraints urnstring ✅ Yes - Company URN (company type only) - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"urn" : "urn:li:company:1234" ,
"count" : 20
}
Content & Posts
search_linkedin_posts
Search LinkedIn posts with advanced filters.
Description : Search LinkedIn posts
Parameters:
Parameter Type Required Default Description Constraints countinteger ✅ Yes - Max result count Max: 1000 keywordsstring ❌ Optional "" Any keyword for searching in the post. For exact search put desired keywords into brackets - sortstring ❌ Optional ”relevance” Sort type - date_postedstring ❌ Optional ”past-month” Date posted filter - content_typestring ❌ Optional - Desired content type - mentionedstring ❌ Optional - Mentioned users URN in posts - authorsstring ❌ Optional - Authors URN of posts - author_industriesstring ❌ Optional - Industry URN or industry name - author_titlestring ❌ Optional - Author job title - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"keywords" : "artificial intelligence" ,
"date_posted" : "past-week" ,
"count" : 50
}
get_linkedin_post
Get detailed information about a specific LinkedIn post.
Description : Get LinkedIn post
Parameters:
Parameter Type Required Default Description Constraints urnstring ✅ Yes - Post URN or slug - include_all_document_imagesboolean ❌ Optional false If enabled, all document images will be included - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"urn" : "urn:li:activity:1234567890"
}
Get comments from a LinkedIn post.
Description : Get LinkedIn post comments
Parameters:
Parameter Type Required Default Description Constraints urnstring ✅ Yes - Post URN (activity type only) - countinteger ✅ Yes - Max result count - sortstring ❌ Optional ”recent” Sort type. Relevance might not return all results - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"urn" : "urn:li:activity:1234567890" ,
"count" : 50
}
get_linkedin_post_reactions
Get reactions from a LinkedIn post.
Description : Get LinkedIn post reactions
Parameters:
Parameter Type Required Default Description Constraints urnstring ✅ Yes - Post URN (activity type only) - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"urn" : "urn:li:activity:1234567890" ,
"count" : 100
}
get_linkedin_post_reposts
Get reposts of a LinkedIn post.
Description : Get LinkedIn post reposts
Parameters:
Parameter Type Required Default Description Constraints urnstring ✅ Yes - Post URN (activity type only) - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"urn" : "urn:li:activity:1234567890" ,
"count" : 50
}
Jobs & Groups
search_linkedin_jobs
Search for job postings on LinkedIn.
Description : Search LinkedIn jobs
Parameters:
Parameter Type Required Default Description Constraints countinteger ✅ Yes - Max result count Max: 1000 keywordsstring ❌ Optional "" Any keyword for searching in the job. For exact search put desired keywords into brackets - sortstring ❌ Optional - Job sorting type - experience_levelstring ❌ Optional - Job experience level - job_typesstring ❌ Optional - Job types - work_typesstring ❌ Optional - Work types - industrystring ❌ Optional - Industry URN - companystring ❌ Optional - Company URN - locationstring ❌ Optional ”worldwide” Job location - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"keywords" : "python developer" ,
"location" : "San Francisco" ,
"count" : 50
}
get_linkedin_group
Get information about a LinkedIn group.
Description : Get LinkedIn group information
Parameters:
Parameter Type Required Default Description Constraints groupstring ✅ Yes - Group URN or URL - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"group" : "https://www.linkedin.com/groups/123456"
}
Instagram
Posts & Content
get_instagram_post
Get detailed information about an Instagram post.
Description : Get Instagram post by ID
Parameters:
Parameter Type Required Default Description Constraints poststring ✅ Yes - Post ID - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
Get comments from an Instagram post.
Description : Get Instagram post comments
Parameters:
Parameter Type Required Default Description Constraints poststring ✅ Yes - Post ID - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"post" : "CxOTF-..." ,
"count" : 50
}
get_instagram_post_likes
Get likes from an Instagram post.
Description : Get Instagram post likes
Parameters:
Parameter Type Required Default Description Constraints poststring ✅ Yes - Post ID - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"post" : "CxOTF-..." ,
"count" : 100
}
search_instagram_posts
Search Instagram posts by query.
Description : Search Instagram posts
Parameters:
Parameter Type Required Default Description Constraints querystring ✅ Yes - Search query - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"query" : "nature photography" ,
"count" : 50
}
User Profiles
get_instagram_user
Get Instagram user profile information.
Description : Get Instagram user profile
Parameters:
Parameter Type Required Default Description Constraints userstring ✅ Yes - User ID, alias or URL - with_creation_dateboolean ❌ Optional false Set to true if you need to get account creation date - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"user" : "natgeo" ,
"with_creation_date" : true
}
get_instagram_user_friendships
Get followers or following list from Instagram user.
Description : Get Instagram user friendships
Parameters:
Parameter Type Required Default Description Constraints userstring ✅ Yes - User ID, alias or URL - countinteger ✅ Yes - Max result count - typestring ✅ Yes - Type of relationships to fetch (followers/following) - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"user" : "natgeo" ,
"count" : 100 ,
"type" : "followers"
}
get_instagram_user_posts
Get posts from an Instagram user profile.
Description : Get Instagram user posts
Parameters:
Parameter Type Required Default Description Constraints userstring ✅ Yes - User ID, alias or URL - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"user" : "natgeo" ,
"count" : 20
}
get_instagram_user_reels
Get reels from an Instagram user profile.
Description : Get Instagram user reels
Parameters:
Parameter Type Required Default Description Constraints userstring ✅ Yes - User ID, alias or URL - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"user" : "natgeo" ,
"count" : 10
}
Search & Discovery
Search Twitter/X posts with advanced filtering.
Description : Search Twitter posts
Parameters:
Parameter Type Required Default Description Constraints countinteger ✅ Yes - Max result count - querystring ❌ Optional "" Main search query. Can include special operators like from:user, to:user, #hashtag - exact_phrasestring ❌ Optional "" Exact phrase (in quotes). Will be added as “phrase” to the query - any_of_these_wordsstring ❌ Optional - Any of these words (OR condition) - none_of_these_wordsstring ❌ Optional - None of these words (NOT condition) - these_hashtagsstring ❌ Optional - These hashtags - languagestring ❌ Optional - Language of tweets - from_these_accountsstring ❌ Optional - From these accounts - to_these_accountsstring ❌ Optional - To these accounts - mentioning_these_accountsstring ❌ Optional - Mentioning these accounts (username with @) - min_repliesstring ❌ Optional - Minimum number of replies - min_likesstring ❌ Optional - Minimum number of likes - min_retweetsstring ❌ Optional - Minimum number of retweets - from_datestring ❌ Optional - Starting date for tweets search (timestamp) - to_datestring ❌ Optional - Ending date for tweets search (timestamp) - search_typestring ❌ Optional ”Top” Type of search results - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"query" : "artificial intelligence" ,
"min_likes" : "100" ,
"count" : 50
}
Search Twitter/X users.
Description : Search Twitter users
Parameters:
Parameter Type Required Default Description Constraints countinteger ✅ Yes - Max result count - querystring ❌ Optional "" Main search users query - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"query" : "python developer" ,
"count" : 20
}
User Data
Get Twitter/X user profile information.
Description : Get Twitter user profile
Parameters:
Parameter Type Required Default Description Constraints userstring ✅ Yes - User Alias or URL - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
Get posts from a Twitter/X user.
Description : Get Twitter user posts
Parameters:
Parameter Type Required Default Description Constraints userstring ✅ Yes - User ID, alias or URL - countinteger ✅ Yes - Max result count - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"user" : "elonmusk" ,
"count" : 20
}
Reddit
Search & Content
search_reddit_posts
Search Reddit posts across all subreddits.
Description : Search Reddit posts
Parameters:
Parameter Type Required Default Description Constraints querystring ✅ Yes - Main search query - countinteger ✅ Yes - Max result count - sortstring ❌ Optional ”relevance” Type of search results sorting - time_filterstring ❌ Optional ”all” Time filter for search results - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"query" : "machine learning" ,
"sort" : "relevance" ,
"time_filter" : "week" ,
"count" : 50
}
get_reddit_post
Get detailed information about a Reddit post.
Description : Get Reddit post details
Parameters:
Parameter Type Required Default Description Constraints post_urlstring ✅ Yes - Reddit post URL or path (e.g., /r/DogAdvice/comments/1o2g2pq/title/ or full URL) - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"post_url" : "https://www.reddit.com/r/Python/comments/..."
}
Get comments from a Reddit post.
Description : Get Reddit post comments
Parameters:
Parameter Type Required Default Description Constraints post_urlstring ✅ Yes - Reddit post URL or path - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"post_url" : "https://www.reddit.com/r/Python/comments/..."
}
Web Parser
parse_webpage
Parse and extract content from any webpage with flexible filtering options.
Description : Parse and extract content from a webpage with flexible filtering options
Parameters:
Parameter Type Required Default Description Constraints urlstring ✅ Yes - URL of the page to parse - include_tagsarray[string] ❌ Optional - CSS selectors of elements to include (keep only these) - exclude_tagsarray[string] ❌ Optional - CSS selectors or wildcard masks of elements to exclude. Examples: ‘.sidebar’, ‘promo ’ - only_main_contentboolean ❌ Optional false Extract only main content of the page (heuristic algorithm) - remove_commentsboolean ❌ Optional true Remove HTML comments - resolve_srcsetboolean ❌ Optional true Convert image srcset to src (selects the largest image) - return_full_htmlboolean ❌ Optional false Return full HTML document (True) or only body content (False) - min_text_blockinteger ❌ Optional 200 Minimum text block size for main content detection (in characters) - remove_base64_imagesboolean ❌ Optional true Remove base64-encoded images (reduces output size) - strip_all_tagsboolean ❌ Optional false Remove all HTML tags and return plain text only - extract_contactsboolean ❌ Optional false Extract links, emails, and phone numbers from the page - same_origin_linksboolean ❌ Optional false Only extract links from the same domain (used with extract_contacts) - social_links_onlyboolean ❌ Optional false Only extract social media links (LinkedIn, Twitter/X, Facebook, Instagram, etc.) - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"url" : "https://example.com/article" ,
"only_main_content" : true ,
"strip_all_tags" : true ,
"extract_contacts" : true
}
Use Cases:
Article content extraction
Contact information gathering
Social media link discovery
Web scraping and data collection
get_sitemap
Fetch and parse website sitemap with filtering options.
Description : Fetch and parse website sitemap with filtering options
Parameters:
Parameter Type Required Default Description Constraints urlstring ✅ Yes - Website URL to fetch sitemap from - include_patternsarray[string] ❌ Optional - Regex patterns for URL paths to include (all URLs if not specified) - exclude_patternsarray[string] ❌ Optional - Regex patterns for URL paths to exclude - same_host_onlyboolean ❌ Optional true Only include URLs from the same host as the base URL - respect_robotsboolean ❌ Optional true Check robots.txt and respect disallowed URLs - countinteger ❌ Optional - Maximum number of URLs to return - return_detailsboolean ❌ Optional false Return detailed sitemap entries (lastmod, changefreq, priority) instead of just URLs - timeoutinteger ❌ Optional 300 Max scrapping execution timeout (in seconds) Min: 20, Max: 1500
Example:
{
"url" : "https://example.com" ,
"count" : 100 ,
"return_details" : true
}
Use Cases:
Website structure analysis
Content inventory
SEO auditing
Bulk URL extraction
Client Filtering
Tools are filtered based on the client type to optimize the user experience for different platforms.
Claude Desktop
Available tools : 55 tools
All tools except :
❌ search (ChatGPT Deep Research only)
❌ fetch (ChatGPT Deep Research only)
These tools are automatically filtered out for Claude Desktop clients to avoid confusion, as they are specifically designed for ChatGPT’s Deep Research mode.
ChatGPT
Available tools : 57 tools (all tools)
All tools including :
✅ search (Deep Research optimized)
✅ fetch (Deep Research optimized)
ChatGPT clients have access to all tools, including the specialized Deep Research wrappers.
Common Parameters
Most tools share these common parameters:
Parameter Type Default Description Constraints timeoutinteger 300 Maximum execution timeout in seconds Min: 20, Max: 1500
Timeout Best Practices:
Use default 300s for most operations
Increase to 600-900s for large data extractions
Use minimum 20s only for quick tests
Maximum 1500s (25 minutes) for very large datasets
Many LinkedIn tools require URN (Uniform Resource Name) identifiers. URNs can be obtained through search endpoints.
URN Types:
Profile URN : urn:li:fsd_profile:ACoAAABCDEF
Obtained from: search_linkedin_users, get_linkedin_profile
Company URN : urn:li:company:1234
Obtained from: search_linkedin_companies, get_linkedin_company
Activity URN (Posts): urn:li:activity:1234567890
Obtained from: search_linkedin_posts, get_linkedin_user_posts
Getting URNs:
Search for resource using appropriate search tool
Extract URN from search results
Use URN in subsequent data extraction tools
Example workflow:
1. search_linkedin_users → get profile URN
2. get_linkedin_user_posts → get post URNs
3. get_linkedin_post_comments → get comments using post URN
Best Practices
Rate Limiting
Respect Limits Monitor your API usage to stay within quota limits. Use count parameters wisely.
Batch Operations Combine multiple operations where possible instead of making separate calls.
Timeout Management Set appropriate timeouts based on expected data volume. Don’t use maximum timeout unnecessarily.
Error Handling Implement proper error handling and retry logic for production use.
Do:
Start with search tools to find relevant resources
Extract only needed data using optional parameters
Use filters to narrow results
Set reasonable count limits
Don’t:
Extract all available data if not needed
Make redundant API calls
Ignore pagination options
Use maximum counts by default
Always obtain URNs through search tools first
Use optional boolean parameters (with_experience, with_skills) to control data volume
Leverage location/industry URN filters for precise targeting
Use keywords with brackets for exact match: "[software engineer]"
User identifiers can be usernames, URLs, or IDs
For historical data, use timestamp filters where available
Post IDs are platform-specific formats
Consider engagement metrics for content analysis
Use only_main_content=true for article extraction
Leverage exclude_tags to remove ads/navigation
Enable extract_contacts for lead generation
Set strip_all_tags=true for plain text output
Security
Never commit API keys or credentials to version control
Use environment variables for sensitive data
Monitor API usage regularly
Rotate keys periodically
Follow platform terms of service
Total Tools : 57
By Platform:
🔵 LinkedIn : 24 tools - Most comprehensive
🟣 Instagram : 8 tools
🔷 Twitter/X : 5 tools
🟠 Reddit : 3 tools
🟢 Web Parser : 2 tools
🔴 ChatGPT Deep Research : 2 tools
🟡 Google Search : 1 tool
By Category:
Search & Discovery : 10 tools
User Profiles : 10 tools
Content & Posts : 15 tools
Comments & Engagement : 8 tools
Company Data : 5 tools
Web Parsing : 2 tools
Other : 7 tools
Usage Examples
LinkedIn Research Workflow
1. search_linkedin_users(keywords="CTO", location="San Francisco")
→ Get list of CTOs in SF
2. get_linkedin_profile(user=profile_url)
→ Extract detailed profile information
3. get_linkedin_user_posts(urn=profile_urn, count=10)
→ Get recent posts
4. get_linkedin_post_comments(urn=post_urn, count=50)
→ Analyze engagement
Instagram Influencer Analysis
1. get_instagram_user(user="username")
→ Get profile metrics
2. get_instagram_user_posts(user="username", count=20)
→ Extract recent posts
3. get_instagram_post_likes(post=post_id, count=100)
→ Analyze engagement patterns
4. get_instagram_user_friendships(user="username", type="followers", count=1000)
→ Understand audience
Reddit Content Monitoring
1. search_reddit_posts(query="product name", time_filter="week")
→ Find relevant discussions
2. get_reddit_post(post_url=url)
→ Get post details
3. get_reddit_post_comments(post_url=url)
→ Extract all comments
4. Analyze sentiment and feedback
Need Help?