Loading...

This MCP server retrieves historical Twitter username changes, aiding in identifying potential scams by tracking frequent screen name alterations.
Boost this tool
Subscribe to listing upgrades or segmented pushes.
This MCP server retrieves historical Twitter username changes, aiding in identifying potential scams by tracking frequent screen name alterations.
This MCP server is generally safe for querying Twitter username history. The primary risk lies in the accuracy of the data retrieved from Twitter and potential rate limiting. It's risky if the data is used without verification for critical decision-making.
Performance depends on Twitter's API response times. Rate limiting may affect performance under heavy load.
Cost is primarily related to the resources used to run the server. Excessive queries may trigger Twitter API rate limits.
pip install mcp[cli]{
"mcpServers": {
"twitter-username-changes": {
"command": "python",
"args": [
"/absolute/path/to/twitter-username-changes-mcp/main.py"
]
}
}
}query_username_changesRetrieves the historical username changes for a given Twitter screen name.
Read-only operation; retrieves publicly available data.
None
This MCP server is generally safe for querying Twitter username history. The primary risk lies in the accuracy of the data retrieved from Twitter and potential rate limiting. It's risky if the data is used without verification for critical decision-making.
The server only supports read operations, so autonomy is limited to data retrieval. No destructive actions are possible.
Production Tip
Implement robust error handling and rate limiting to prevent service disruptions in a production environment.
The accuracy depends on the data provided by Twitter's API, which may not always be complete or up-to-date.
This tool only retrieves publicly available information, so private accounts will not be accessible.
Yes, Twitter's API has rate limits that may restrict the number of queries you can make within a certain time period.
No, this server does not store any user data. It only retrieves and displays information from Twitter's API.
No, this server only supports read operations. It cannot be used to change Twitter usernames.
Python 3.10 or higher is required.
Implement retry logic with exponential backoff to handle rate limiting errors gracefully.