TwitterAPI.io MCP Server
Provides AI agents and coding assistants with Twitter data access including tweets, user profiles, followers, and search functionality.
README
TwitterAPI.io MCP Server
Twitter Data Access Capabilities for AI Agents and AI Coding Assistants
A powerful implementation of the Model Context Protocol (MCP) integrated with TwitterAPI.io for providing AI agents and AI coding assistants with advanced Twitter data access capabilities.
With this MCP server, you can access tweets, user profiles, and search functionality and then use that knowledge anywhere.
Overview
This MCP server provides tools that enable AI agents to access Twitter data through TwitterAPI.io's service, including retrieving tweets, user profiles, followers, and performing searches. It follows the best practices for building MCP servers.
Features
- Tweet Retrieval: Get tweets by ID
- User Profiles: Access user profile information
- Timeline Access: Retrieve a user's recent tweets
- Network Analysis: Get user followers and following
- Search Capabilities: Search tweets with advanced query support
- Replies Retrieval: Get replies to specific tweets
Tools
The server provides six essential Twitter data access tools:
- get_tweet: Get a tweet by its ID
- get_user_profile: Get a Twitter user's profile information
- get_user_recent_tweets: Get a user's recent tweets
- search_tweets: Search for tweets based on a query
- get_user_followers: Get a list of users who follow the specified user
- get_user_following: Get a list of users that the specified user follows
Prerequisites
- Docker/Docker Desktop if running the MCP server as a container (recommended)
- Python 3.10+ if running the MCP server directly
- TwitterAPI.io API key
Installation
Using Docker (Recommended)
- Clone this repository:
git clone https://github.com/yourusername/twitterapi.io-mcp.git
cd twitterapi.io-mcp
- Build the Docker image:
docker build -t mcp/twitterapi-io --build-arg PORT=8051 .
- Create a .env file based on the configuration section below
Using Python directly (no Docker)
- Clone this repository:
git clone https://github.com/yourusername/twitterapi.io-mcp.git
cd twitterapi.io-mcp
- Install dependencies:
pip install -e .
- Create a .env file based on the configuration section below
Configuration
Create a .env file in the project root with the following variables:
# MCP Server Configuration
HOST=0.0.0.0
PORT=8051
TRANSPORT=sse
# TwitterAPI.io Configuration
TWITTER_API_KEY=your_twitterapi_io_key
Running the Server
Using Docker
docker run --env-file .env -p 8051:8051 mcp/twitterapi-io
Using Python
python src/main.py
The server will start and listen on the configured host and port.
Integration with MCP Clients
SSE Configuration
Once you have the server running with SSE transport, you can connect to it using this configuration:
{
"mcpServers": {
"twitterapi-mcp": {
"transport": "sse",
"url": "http://localhost:8051/sse"
}
}
}
Note for Windsurf users: Use serverUrl instead of url in your configuration:
{
"mcpServers": {
"twitterapi-mcp": {
"transport": "sse",
"serverUrl": "http://localhost:8051/sse"
}
}
}
Note for Docker users: Use host.docker.internal instead of localhost if your client is running in a different container.
Stdio Configuration
Add this server to your MCP configuration for Claude Desktop, Windsurf, or any other MCP client:
{
"mcpServers": {
"twitterapi-mcp": {
"command": "python",
"args": ["path/to/twitterapi-mcp/src/main.py"],
"env": {
"TRANSPORT": "stdio",
"TWITTER_API_KEY": "your_twitterapi_io_key"
}
}
}
}
Docker with Stdio Configuration
{
"mcpServers": {
"twitterapi-mcp": {
"command": "docker",
"args": ["run", "--rm", "-i",
"-e", "TRANSPORT",
"-e", "TWITTER_API_KEY",
"mcp/twitterapi-io"],
"env": {
"TRANSPORT": "stdio",
"TWITTER_API_KEY": "your_twitterapi_io_key"
}
}
}
}
Usage Examples
# Example of using the client with MCP
from mcp.client import Client
async with Client("twitterapi-mcp") as client:
# Get a user profile
user = await client.get_user_profile(username="twitterapi")
print(user)
# Search for tweets
tweets = await client.search_tweets(query="python", count=5)
print(tweets)
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.