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.
{
"mcpServers": {
"socialdata-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
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.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 318 days ago. 7 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
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)