SocialIntelligence MCP Server
Connect AI assistants directly to social media data using the Model Context Protocol. Enable real-time access to user profiles, posts, and more.
Model Context Protocol
The Model Context Protocol (MCP) is an open protocol developed by Anthropic that enables seamless integration between AI assistants and external data sources, tools, and services.
Direct Data Access
AI assistants can query social media data in real-time without manual API calls
Standardized Interface
Consistent protocol across all MCP-compatible clients
Secure & Controlled
Full control over what data AI assistants can access
AI assistant receives a user query about social media data
MCP client determines the appropriate tool to use
XData MCP server processes the request
Response is returned to the AI assistant
MCP Tools
XData MCP server provides the following tools for AI assistants to interact with social media data.
Setup Instructions
Configure XData MCP server with your favorite AI assistant or IDE.
- Open Claude Desktop
- Go to Settings → Developer → Edit Config
- Add the following to your
claude_desktop_config.json:
{
"mcpServers": {
"xdata": {
"command": "npx",
"args": ["-y", "@xdata/mcp-server"],
"env": {
"XDATA_API_KEY": "your_api_key_here"
}
}
}
}Replace your_api_key_here with your SocialIntelligence key.
Natural Language Queries
Once configured, AI assistants can understand natural language queries and automatically use the appropriate tools.
"What's Elon Musk's latest post?"
Tool called:
get_user_postsParameters:
{ "username": "elonmusk", "count": 1 }"Show me trending topics in the US"
Tool called:
get_trending_topicsParameters:
{ "location": "US" }"Search for posts about AI"
Tool called:
search_postsParameters:
{ "query": "artificial intelligence", "count": 10 }"Get profile info for @github"
Tool called:
get_user_profileParameters:
{ "username": "github" }