TwitterAPI.io MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@TwitterAPI.io MCP Serversearch for tweets about AI"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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.
Related MCP server: Twitter MCP Server
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-mcpBuild 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-mcpInstall 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_keyRunning the Server
Using Docker
docker run --env-file .env -p 8051:8051 mcp/twitterapi-ioUsing Python
python src/main.pyThe 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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceEnables LLM agents to interact with Twitter (X) for searching tweets, posting content with images, analyzing engagement, and extracting topics using the Twitter API.Last updated
- Alicense-qualityCmaintenanceEnables AI assistants to access Twitter/X data including user profiles, tweets, search, and follower events via a set of MCP tools.Last updatedMIT
- Alicense-qualityCmaintenanceEnables AI assistants to interact with X (Twitter) API v2 for posting tweets, searching, liking, retweeting, and more through natural language.Last updatedMIT
- FlicenseAqualityDmaintenanceAllows AI assistants to query Twitter data including user info, tweets, trends, and more via twitterapi.io API.Last updated126
Related MCP Connectors
X (formerly Twitter) posts, profiles, and search for AI agents. Free key, self-minted, no signup.
Give your agent live data from Twitter, Reddit, the web and GitHub. No API keys, no scraping stack.
Twitter/X, Instagram, Reddit & TikTok data for AI agents. Billions of posts. No API keys.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/DevRico003/twitterapi.io-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server