twikit-mcp
PyPI
v0.1.45
Published by tangivis — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.
Twitter/X MCP server powered by twikit — no API key needed, free forever
The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.
1. Threat score — 100 − 0 = 100. What the published surface and source actually contain:
The deterministic scan raised no scored threat in the surface it inspected — the threat score stayed at 100. Capability observations and advisory notes are recorded but never lower it.
2. Client adoption risk — 100 − 4 = 96. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:
| Points | Adoption-risk factor |
|---|---|
| −3 | capability blast radius (moderate) — client exposure if the model is manipulated |
| −1 | publisher verification (public source) — no provenance, but the source is public and inspectable |
Capability observations and info notes are shown under Findings but never scored.
Open any row's finding below for the file, line and evidence behind a deduction.
Untrusted-input tools ([get_tweet, get_tweet_replies, download_tweet_video, get_timeline, get_user_tweets, get_bookmarks, get_favoriters, get_retweeters, search_user, get_trends, get_article, get_lists, get_list_tweets, get_list_members, get_list_subscribers, get_communities_timeline, get_community_members, get_community_moderators, xchat_list_conversations, xchat_get_history]) co-exist with external-action tools ([send_tweet, download_tweet_video, like_tweet, retweet, delete_tweet, unfavorite_tweet, delete_retweet, bookmark_tweet, delete_bookmark, create_scheduled_tweet, delete_scheduled_tweet]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.
Evidence: untrusted [get_tweet, get_tweet_replies, download_tweet_video, get_timeline, get_user_tweets, get_bookmarks, get_favoriters, get_retweeters, search_user, get_tr
Fix: Require confirmation for state-changing/egress actions triggered after processing untrusted content.
Location: flow get_tweet → send_tweet
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_cli.py:184`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: uring IO.""" return subprocess.run( [sys.executable, "-m", "twitter_mcp.server", *args], capture_out
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_cli.py
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_docs_api_listing.py:37`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: ess import sys subprocess.run( [sys.executable, str(_REPO_ROOT / "scripts" / "gen_api_docs.py")],
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_docs_api_listing.py
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_docs_cli_listing.py:47`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: i_docs.py" result = subprocess.run( [sys.executable, str(script)], capture_output=True, text
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_docs_cli_listing.py
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_pr_review_workflow.py:105`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: alse", ) proc = subprocess.run( ["bash", "-e", "-c", _extract_run_block("call")], cwd=tmp_path,
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_pr_review_workflow.py
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_server.py:865`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: } ) result = subprocess.run( [sys.executable, "-m", "twitter_mcp.server"], input=init_request
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_server.py
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_vendor.py:409`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: } ) result = subprocess.run( [sys.executable, "-m", "twitter_mcp.server"], input=init_request
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_vendor.py
In a packaging/dev/install script (shipped, but not the server runtime) (`tests/test_video_download.py:224`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.
Evidence: """FileNotFoundError on exec (yt-dlp not on PATH) → ToolError with hint.""" async def explode(*cmd, **kwargs):
Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.
Location: server tests/test_video_download.py
Each tool and what it can reach — statically extracted from the published source.
download_tweet_videoingests untrusted inputnetwork egressbookmark_tweetnetwork egresscreate_scheduled_tweetnetwork egressdelete_bookmarknetwork egressdelete_retweetnetwork egressdelete_scheduled_tweetnetwork egressdelete_tweetnetwork egressget_articleingests untrusted inputget_bookmarksingests untrusted inputget_communities_timelineingests untrusted inputget_community_membersingests untrusted inputget_community_moderatorsingests untrusted inputget_favoritersingests untrusted inputget_list_membersingests untrusted inputget_list_subscribersingests untrusted inputget_list_tweetsingests untrusted inputget_listsingests untrusted inputget_retweetersingests untrusted inputget_timelineingests untrusted inputget_trendsingests untrusted inputget_tweetingests untrusted inputget_tweet_repliesingests untrusted inputget_user_tweetsingests untrusted inputlike_tweetnetwork egressretweetnetwork egresssearch_useringests untrusted inputsend_tweetnetwork egressunfavorite_tweetnetwork egressxchat_get_historyingests untrusted inputxchat_list_conversationsingests untrusted inputadd_list_memberno sensitive capabilityblock_userno sensitive capabilitycreate_listno sensitive capabilitycreate_pollno sensitive capabilitydelete_dmno sensitive capabilityedit_listno sensitive capabilityfollow_userno sensitive capabilityget_article_previewno sensitive capabilityget_communityno sensitive capabilityget_community_tweetsno sensitive capabilityget_dm_historyno sensitive capabilityget_listno sensitive capabilityget_notificationsno sensitive capabilityget_scheduled_tweetsno sensitive capabilityget_user_followersno sensitive capabilityget_user_followingno sensitive capabilityget_user_infono sensitive capabilityjoin_communityno sensitive capabilityleave_communityno sensitive capabilitymute_userno sensitive capabilityremove_list_memberno sensitive capabilityrequest_to_join_communityno sensitive capabilitysearch_communityno sensitive capabilitysearch_community_tweetno sensitive capabilitysearch_tweetsno sensitive capabilitysend_dmno sensitive capabilitysend_dm_to_groupno sensitive capabilityunblock_userno sensitive capabilityunfollow_userno sensitive capabilityunmute_userno sensitive capabilityvoteno sensitive capabilityxchat_statusno sensitive capabilityCross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).
Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v0.1.45 latest |
A 96/100 | 8 | 1.13.0 | 2026-08-25 |
v0.1.42 |
A 96/100 | 7 | 1.12.1 | 2026-08-17 |
v0.1.39 |
A 96/100 | 7 | 1.12.1 | 2026-08-15 |
v0.1.37 |
A 96/100 | 7 | 1.12.1 | 2026-08-14 |
v0.1.35 |
A 96/100 | 7 | 1.12.1 | 2026-07-31 |
v0.1.33 |
A 96/100 | 7 | 1.12.1 | 2026-07-27 |
Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.
The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.
npx mcptrustchecker scan twikit-mcp --online --registry pypi
Official Abyssfall game info, newsletter double opt-in, and merch reservation tools.
AdCritter ads platform: docs, API reference, app scaffolding, and white-label integration.
Google AdSense MCP Server - Monitor earnings, reports, and account health via Claude/AI
Operational empathy for technical founders + PE/VC operators navigating high-stakes B2B interactions. 28 MCP tools + CLI: ICP scoring, persona simulation, battlecards, deal classification, prospect discovery, investor matching, founder wellness, plus mark
MCP server for Bing Webmaster Tools — SEO site management, URL submission, sitemaps, stats, keywords
MCP (Model Context Protocol) server that helps AI agents use Primer Brand (@primer/react-brand) correctly when building GitHub marketing and landing pages.