botometer-pro
3.5
The Botometer Pro MCP Server is a comprehensive tool for analyzing Twitter accounts to determine their level of automation.
The Botometer Pro server offers a variety of tools to evaluate Twitter accounts for bot-like activities. These tools are designed to cater to different needs and can analyze accounts in bulk or individually, providing flexibility to users. Botometer Pro provides multiple endpoints to assess the bot-like characteristics of Twitter accounts, allowing users to make informed decisions based on the scores received.
Features
- Multiple endpoints for assessing Twitter accounts.
- Capability to analyze accounts in bulk or individually.
- Utilizes historical data for analysis.
- Provides detailed bot-like activity scores.
- Flexible tools catering to different user needs.
MCP Tools
- Botometer X: Checks Twitter accounts for potentially automated activities using historical data.
- Botometer V4 (Legacy): Offers detailed analysis of a single Twitter account using comprehensive features.
- BotometerLite (Legacy): Designed for bulk analysis, allowing users to check multiple accounts simultaneously.
Usage with Different Platforms
Botometer X
python
import requests
url = 'https://api.botometer-pro.com/x'
params = {
'user_ids': '123456789,987654321',
'api_key': 'your_api_key'
}
response = requests.get(url, params=params)
print(response.json())
Botometer V4
python
import requests
url = 'https://api.botometer-pro.com/v4'
data = {
'user_info': {...},
'tweets': [...],
'api_key': 'your_api_key'
}
response = requests.post(url, json=data)
print(response.json())
BotometerLite
python
import requests
url = 'https://api.botometer-pro.com/lite'
data = {
'user_profiles': [...],
'api_key': 'your_api_key'
}
response = requests.post(url, json=data)
print(response.json())