@instantmcp/server-linkedin
v0.6.2
Published
MCP server for interacting with LinkedIn Ads Library
Readme
LinkedIn Ads Library MCP Server
MCP Server for the LinkedIn Ads Library API, enabling Claude to search and retrieve LinkedIn ads.
Tools
search_linkedin_ads- Search for LinkedIn ads based on keywords, countries, and date range
- Required inputs:
keyword(string): The keywords that define the search term
- Optional inputs:
countries(string): Filters results by countrystartdate(string): The start date of the search in the format YYYY-MM-DDenddate(string): The end date of the search in the format YYYY-MM-DD
- Returns: List of LinkedIn ads matching the search criteria
get_details_of_ad- Get details of a specific LinkedIn ad
- Required inputs:
url(string): The URL of the LinkedIn ad
- Returns: Detailed information about the specified LinkedIn ad
search_linkedin_ads_with_url- Search for LinkedIn ads based on a URL
- Required inputs:
url(string): The URL of the LinkedIn ad
- Returns: LinkedIn ads associated with the provided URL
Usage with Claude Desktop
Add the following to your claude_desktop_config.json:
npx
{
"mcpServers": {
"linkedInAdsLibrary": {
"command": "npx",
"args": ["-y", "@custom-mcp-servers/server-linkedin"],
"env": {
"API_KEY": "xoxb-your-bot-token"
}
}
}
}