Twitter / X
Post tweets, search content, and manage your presence on X (formerly Twitter). Requires an X Developer App with API access. Free tier: read-only. Basic plan ($200/mo): full read/write.
setup_integration or the Dashboard Vault — they're encrypted
with AES-256-GCM and never exposed.
Required Credentials
Get your API key at developer.x.com →
Endpoints (5)
Post a new tweet on X. Text-only, max 280 characters. Requires Basic plan ($200/mo) or higher.
| Field | Type | Required | Description |
|---|---|---|---|
text |
string | ✓ Yes | Tweet text (max 280 characters). |
Delete a tweet by ID. Only works for tweets owned by the authenticated user.
| Field | Type | Required | Description |
|---|---|---|---|
tweet_id |
string | ✓ Yes | ID of the tweet to delete. |
Get a single tweet by ID. Returns text, creation date, public metrics (likes, retweets, replies), and author info.
| Field | Type | Required | Description |
|---|---|---|---|
tweet_id |
string | ✓ Yes | ID of the tweet to retrieve. |
Search recent tweets from the last 7 days. Returns up to 10 results with public metrics and author info. Use X API v2 search syntax for the query.
| Field | Type | Required | Description |
|---|---|---|---|
query |
string | ✓ Yes | Search query using X API v2 syntax. Examples: "websitepublisher", "from:username", "#hashtag", "keyword lang:en". |
Get the authenticated user profile: username, display name, bio, profile image, and public metrics (followers, following, tweet count).
No input parameters required.
MCP Tool Names
When using this integration through an AI assistant (Claude, ChatGPT, Cursor, etc.), the endpoints are available as MCP tools:
| Endpoint | MCP Tool Name |
|---|---|
| create-tweet | twitter_create_tweet |
| delete-tweet | twitter_delete_tweet |
| get-tweet | twitter_get_tweet |
| search-tweets | twitter_search_tweets |
| get-me | twitter_get_me |