social-links-search

social-links-search

3.5

The Social Links Search MCP Server provides a powerful and efficient way to search for social profile links across various platforms.

The Social Links Search MCP Server is designed to facilitate the retrieval of social media profile links from a variety of popular platforms. It offers a fast, simple, and reliable service that allows users to obtain URLs for profiles on networks such as Facebook, TikTok, Instagram, Snapchat, Twitter, LinkedIn, YouTube, Pinterest, and GitHub. This server is particularly useful for applications that require real-time access to social media links, enabling developers to enhance user profiles or gather social media data efficiently.

Features

  • Real-Time Search: Quickly search and retrieve social profile links using a simple query.
  • Wide Network Support: Supports major social networks including Facebook, TikTok, Instagram, Snapchat, Twitter, LinkedIn, YouTube, Pinterest, and GitHub.
  • Customizable Search: Specify which social networks to search, allowing for tailored results based on your needs.

MCP Tools

  • search_social_links: Retrieve social profile links by providing a search query or keywords. Supported networks include Facebook, TikTok, Instagram, Snapchat, Twitter, YouTube, LinkedIn, GitHub, and Pinterest.

Usage with Different Platforms

python

python
import requests

url = 'http://your-mcp-server-url/search_social_links'
params = {
    'query': 'John Doe',
    'social_networks': 'Facebook,Twitter,LinkedIn'
}
response = requests.get(url, params=params)
print(response.json())

nodejs

javascript
const axios = require('axios');

const url = 'http://your-mcp-server-url/search_social_links';
const params = {
    query: 'John Doe',
    social_networks: 'Facebook,Twitter,LinkedIn'
};

axios.get(url, { params })
    .then(response => console.log(response.data))
    .catch(error => console.error(error));