A comprehensive Model Context Protocol (MCP) server that provides tools for interacting with the SocialData API. This server allows you to fetch Twitter/X data, monitor user activity, and analyze social media engagement programmatically.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"socialdata": {
"env": {
"SOCIALDATA_API_KEY": "your_actual_api_key_here"
},
"args": [
"/path/to/your/socialdata/server.py"
],
"type": "stdio",
"command": "/path/to/your/socialdata/venv/bin/python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A comprehensive Model Context Protocol (MCP) server that provides tools for interacting with the SocialData API. This server allows you to fetch Twitter/X data, monitor user activity, and analyze social media engagement programmatically.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in analytics / marketing
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
DataForSEO API modelcontextprotocol server
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
MCP Security Weekly
Get CVE alerts and security updates for SocialData MCP Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A comprehensive Model Context Protocol (MCP) server that provides tools for interacting with the SocialData API. This server allows you to fetch Twitter/X data, monitor user activity, and analyze social media engagement programmatically.
Run the setup script which will create a virtual environment and install dependencies:
chmod +x setup.sh
./setup.sh
Then activate the virtual environment:
source venv/bin/activate
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
export SOCIALDATA_API_KEY="your_api_key_here"
You can get an API key from your SocialData dashboard.
To use this server with an MCP client (like Claude Desktop, Continue, or other MCP-compatible tools), add the following configuration:
Add this to your MCP client configuration file (usually config.json or similar):
{
"mcpServers": {
"socialdata": {
"type": "stdio",
"command": "/path/to/your/socialdata/venv/bin/python",
"args": ["/path/to/your/socialdata/server.py"],
"env": {
"SOCIALDATA_API_KEY": "your_actual_api_key_here"
}
}
}
}
Replace the paths and API key with your actual values:
/path/to/your/socialdata/ - Replace with the full path to where you installed this serveryour_actual_api_key_here - Replace with your SocialData API key from your dashboard{
"mcpServers": {
"socialdata": {
"type": "stdio",
"command": "/Users/yourname/path/to/socialdata/venv/bin/python",
"args": ["/Users/yourname/path/to/socialdata/server.py"],
"env": {
"SOCIALDATA_API_KEY": "your_actual_api_key_here"
}
}
}
}
{
"mcpServers": {
"socialdata": {
"type": "stdio",
"command": "python3",
"args": ["/Users/yourname/path/to/socialdata/server.py"],
"env": {
"SOCIALDATA_API_KEY": "your_actual_api_key_here"
}
}
}
}
Create a run script:
#!/bin/bash
cd /path/to/your/socialdata
source venv/bin/activate
python3 server.py
... [View full README on GitHub](https://github.com/TheSethRose/SocialData-MCP-Server#readme)