TwitGhost
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| USER_AGENT | No | Optional custom browser user agent | |
| TWITTER_EMAIL | No | Email on your X account (required if not using browser cookies) | |
| TWITTER_PASSWORD | No | Your X password (required if not using browser cookies) | |
| TWITTER_USERNAME | No | Your X handle (required if not using browser cookies) |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| logging | {} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| extensions | {
"io.modelcontextprotocol/ui": {}
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| search_twitterC | Search twitter with a query. Sort by 'Top' or 'Latest' |
| get_user_tweetsC | Get tweets from a specific user's timeline. |
| get_timelineC | Get tweets from your home timeline (For You). |
| get_latest_timelineC | Get tweets from your home timeline (Following). |
| post_tweetC | Post a tweet with optional media, reply, and tags. |
| delete_tweetC | Delete a tweet by its ID. |
| send_dmC | Send a direct message to a user. |
| delete_dmC | Delete a direct message by its ID. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Most tools are clearly distinct, but get_latest_timeline and get_timeline both retrieve home timeline tweets with only a subtle difference (Following vs For You), which could cause misselection.
All tools use snake_case with a consistent verb_noun pattern (delete_, get_, post_, search_, send_), making them predictable.
8 tools is well-scoped for a Twitter API wrapper, covering posting, deleting, reading, searching, and DMs without being excessive.
Missing essential operations like get_tweet by ID and list/get DMs, which creates dead ends for common workflows.