Twikit MCP Server

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

Trust grade
A
96/100
Last scanned get badge →
Trust
A · 96/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
Moderate
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
A Why this grade threat 100 − adoption risk = 96/100

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:

PointsAdoption-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.

Findings 8

medium Untrusted input can drive an external actionMTC-FLOW-005

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

low Shell/command execution in packaging/dev tooling (tests/test_cli.py)MTC-SRC-002

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

low Shell/command execution in packaging/dev tooling (tests/test_docs_api_listing.py)MTC-SRC-002

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

low Shell/command execution in packaging/dev tooling (tests/test_docs_cli_listing.py)MTC-SRC-002

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

low Shell/command execution in packaging/dev tooling (tests/test_pr_review_workflow.py)MTC-SRC-002

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

low Shell/command execution in packaging/dev tooling (tests/test_server.py)MTC-SRC-002

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

low Shell/command execution in packaging/dev tooling (tests/test_vendor.py)MTC-SRC-002

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

low Shell/command execution in packaging/dev tooling (tests/test_video_download.py)MTC-SRC-002

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

Tools 62

Each tool and what it can reach — statically extracted from the published source.

  • download_tweet_videoingests untrusted inputnetwork egress
  • bookmark_tweetnetwork egress
  • create_scheduled_tweetnetwork egress
  • delete_bookmarknetwork egress
  • delete_retweetnetwork egress
  • delete_scheduled_tweetnetwork egress
  • delete_tweetnetwork egress
  • get_articleingests untrusted input
  • get_bookmarksingests untrusted input
  • get_communities_timelineingests untrusted input
Show 52 more tools ↓
  • get_community_membersingests untrusted input
  • get_community_moderatorsingests untrusted input
  • get_favoritersingests untrusted input
  • get_list_membersingests untrusted input
  • get_list_subscribersingests untrusted input
  • get_list_tweetsingests untrusted input
  • get_listsingests untrusted input
  • get_retweetersingests untrusted input
  • get_timelineingests untrusted input
  • get_trendsingests untrusted input
  • get_tweetingests untrusted input
  • get_tweet_repliesingests untrusted input
  • get_user_tweetsingests untrusted input
  • like_tweetnetwork egress
  • retweetnetwork egress
  • search_useringests untrusted input
  • send_tweetnetwork egress
  • unfavorite_tweetnetwork egress
  • xchat_get_historyingests untrusted input
  • xchat_list_conversationsingests untrusted input
  • add_list_memberno sensitive capability
  • block_userno sensitive capability
  • create_listno sensitive capability
  • create_pollno sensitive capability
  • delete_dmno sensitive capability
  • edit_listno sensitive capability
  • follow_userno sensitive capability
  • get_article_previewno sensitive capability
  • get_communityno sensitive capability
  • get_community_tweetsno sensitive capability
  • get_dm_historyno sensitive capability
  • get_listno sensitive capability
  • get_notificationsno sensitive capability
  • get_scheduled_tweetsno sensitive capability
  • get_user_followersno sensitive capability
  • get_user_followingno sensitive capability
  • get_user_infono sensitive capability
  • join_communityno sensitive capability
  • leave_communityno sensitive capability
  • mute_userno sensitive capability
  • remove_list_memberno sensitive capability
  • request_to_join_communityno sensitive capability
  • search_communityno sensitive capability
  • search_community_tweetno sensitive capability
  • search_tweetsno sensitive capability
  • send_dmno sensitive capability
  • send_dm_to_groupno sensitive capability
  • unblock_userno sensitive capability
  • unfollow_userno sensitive capability
  • unmute_userno sensitive capability
  • voteno sensitive capability
  • xchat_statusno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 6

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.

VersionScoreFindingsEngineScanned
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
Show 1 more version ↓
v0.1.33 A 96/100 7 1.12.1 2026-07-27

Embed this score

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.

MCP Trust Score: A · 96/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/twikit-mcp/badge.svg)](https://mcptrustchecker.com/registry/twikit-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/twikit-mcp"><img src="https://mcptrustchecker.com/registry/twikit-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/twikit-mcp/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

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

Use the free API → How scoring works

More in Marketing & Social

Abyssfall: Operation Sunken Crown Remote
A
https://www.abyssfallgame.com/mcp

Official Abyssfall game info, newsletter double opt-in, and merch reservation tools.

Marketing & Social Score 100/100 0 findings Cap. Minimal
AdCritter for Developers Remote
A
https://mcp.adcritter.com/mcp/dev

AdCritter ads platform: docs, API reference, app scaffolding, and white-label integration.

Marketing & Social Score 100/100 0 findings Cap. Minimal
Adsense Source verified npm
A
@appsyogi/adsense-mcp-server

Google AdSense MCP Server - Monitor earnings, reports, and account health via Claude/AI

Marketing & Social Score 100/100 0 findings 29/wk Cap. Minimal
Andru Intelligence Source verified npm
A
mcp-server-andru-intelligence

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

Marketing & Social Score 100/100 0 findings 70/wk Cap. Minimal
Bing Seo Source verified npm
A
bing-seo-mcp

MCP server for Bing Webmaster Tools — SEO site management, URL submission, sitemaps, stats, keywords

Marketing & Social Score 100/100 0 findings 19/wk Cap. Minimal
Brand Source verified npm
A
@primer/brand-mcp

MCP (Model Context Protocol) server that helps AI agents use Primer Brand (@primer/react-brand) correctly when building GitHub marketing and landing pages.

Marketing & Social Score 100/100 0 findings 791/wk Cap. Minimal