Xactions (nirholas) MCP Server

xactions npm v3.5.0

Published by nirholas — 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.

XActions - The Complete X/Twitter Automation Toolkit. Scrapers, MCP server for AI agents, CLI, and browser scripts. No API required. Open source by @nichxbt. Don't Panic.

Trust grade
B
83/100
Last scanned get badge →
Trust
B · 83/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
Critical
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
B Why this grade threat 94 − adoption risk = 83/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 − 6.3 = 94. What the published surface and source actually contain:

PointsWhat was foundCategory
−6.3 Untrusted input concatenated into a command sink MTC-SRC-009 injection

2. Client adoption risk — 94 − 11 = 83. 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
−10 capability blast radius (critical) — 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 22

high Dynamic code execution in server code (src/scrapers/adapters/got-jsdom.js)MTC-SRC-001

In the server's implementation (`src/scrapers/adapters/got-jsdom.js:206`): Evaluating strings as code is the most direct RCE primitive; if any tool input reaches it, the server executes attacker-chosen code. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const wrappedFn = new Function('window', 'document', 'navigator', ...args.map((_, i) => `__arg${i}`), `con

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 src/scrapers/adapters/got-jsdom.js

high Shell/command execution in server code (src/plugins/manager.js)MTC-SRC-002

In the server's implementation (`src/plugins/manager.js:11`): 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: port { execSync } from 'child_process'; import { readPluginsConfig, writePluginsConfig, loadPlugin, loadAllPlugi

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 src/plugins/manager.js

high Shell/command execution in server code (src/scheduler/scheduler.js)MTC-SRC-002

In the server's implementation (`src/scheduler/scheduler.js:13`): 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: execFile, spawn } from 'child_process'; import fs from 'fs'; import fsp from 'fs/promises'; import path from 'path'; imp

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 src/scheduler/scheduler.js

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

Untrusted-input tools ([x_get_followers, x_get_following, x_get_tweets, x_download_video, x_get_explore, x_get_notifications, x_scrape_space, x_get_thread, x_rss_add, x_rss_check, x_rss_drafts, x_get_replies, x_get_hashtag, x_get_media, x_get_mentions, x_get_likes]) co-exist with external-action tools ([x_post_tweet, x_like, x_retweet, x_download_video, x_post_thread, x_create_poll, x_schedule_post, x_delete_tweet, x_reply, x_bookmark, x_monitor_reputation, x_stream_start, x_get_thread, x_best_time_to_post, x_generate_tweet, x_rewrite_tweet, x_history_get, x_optimize_tweet, x_suggest_hashtags, x_predict_performance, x_generate_variations, x_get_replies, x_get_likers, x_get_retweeters, x_get_quote_tweets, x_quote_tweet, x_detect_bots, x_track_engagement]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.

Evidence: untrusted [x_get_followers, x_get_following, x_get_tweets, x_download_video, x_get_explore, x_get_notifications, x_scrape_space, x_get_thread, x_rss_add, x_rss_

Fix: Require confirmation for state-changing/egress actions triggered after processing untrusted content.

Location: flow x_get_followers → x_post_tweet

medium Hardcoded egress to an external endpoint (src/analytics/sentiment.js)MTC-SRC-003

In the server's implementation (`src/analytics/sentiment.js:248`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const response = await fetch('https://openrouter.ai/api/v1/chat/completions', { method: 'POST', headers: {

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 src/analytics/sentiment.js

medium Hardcoded egress to an external endpoint (src/automation/controlPanel.js)MTC-SRC-003

In the server's implementation (`src/automation/controlPanel.js:767`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await fetch('https://openrouter.ai/api/v1/chat/completions', { method: 'POST', hea

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 src/automation/controlPanel.js

medium Hardcoded egress to an external endpoint (src/mcp/server.js)MTC-SRC-003

In the server's implementation (`src/mcp/server.js:2786`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const response = await fetch('https://openrouter.ai/api/v1/chat/completions', { method: 'POST', headers

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 src/mcp/server.js

medium Hardcoded egress to an external endpoint (src/notifications/notifier.js)MTC-SRC-003

In the server's implementation (`src/notifications/notifier.js:203`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const response = await fetch(`https://api.telegram.org/bot${botToken}/sendMessage`, { method: 'POST', heade

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 src/notifications/notifier.js

medium Hardcoded egress to an external endpoint (src/scrapers/twitter/http/guest.js)MTC-SRC-003

In the server's implementation (`src/scrapers/twitter/http/guest.js:206`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const res = await this.#fetch( 'https://api.x.com/1.1/guest/activate.json', { method: 'POST',

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 src/scrapers/twitter/http/guest.js

medium Hardcoded egress to an external endpoint (src/scraping/proxyManager.js)MTC-SRC-003

In the server's implementation (`src/scraping/proxyManager.js:159`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: 10000); await fetch('https://httpbin.org/ip', { signal: controller.signal, // Note: fe

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 src/scraping/proxyManager.js

medium Hardcoded egress to an external endpoint (src/shadowbanChecker.js)MTC-SRC-003

In the server's implementation (`src/shadowbanChecker.js:145`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: t typeaheadResp = await fetch( `https://x.com/i/api/1.1/search/typeahead.json?q=${username}&src=search_box&resul

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 src/shadowbanChecker.js

medium Hardcoded egress to an external endpoint (src/workflows/actions.js)MTC-SRC-003

In the server's implementation (`src/workflows/actions.js:623`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const response = await fetch('https://openrouter.ai/api/v1/chat/completions', { method: 'POST', headers: {

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 src/workflows/actions.js

medium Untrusted input concatenated into a command sink (src/plugins/manager.js)MTC-SRC-009

In the server's implementation (`src/plugins/manager.js:66`): A shell/process command assembled from concatenated or interpolated values is command injection when any part is attacker-influenced — the OWASP canonical RCE flow. Verify what reaches the interpolated value. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ocal) { try { execSync(`npm install ${name}`, { stdio: 'pipe', cwd: process.cwd() }); } catch (error) {

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 src/plugins/manager.js

medium Unconstrained URL/host parameter "url" on "x_like"MTC-CAP-007

Tool "x_like" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool x_like · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "x_retweet"MTC-CAP-007

Tool "x_retweet" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool x_retweet · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "x_delete_tweet"MTC-CAP-007

Tool "x_delete_tweet" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool x_delete_tweet · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "x_reply"MTC-CAP-007

Tool "x_reply" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool x_reply · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "x_bookmark"MTC-CAP-007

Tool "x_bookmark" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool x_bookmark · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "x_scrape_space"MTC-CAP-007

Tool "x_scrape_space" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool x_scrape_space · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "x_get_thread"MTC-CAP-007

Tool "x_get_thread" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool x_get_thread · inputSchema.properties.url

medium Unconstrained URL/host parameter "url" on "x_rss_add"MTC-CAP-007

Tool "x_rss_add" takes a URL/host parameter "url" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool x_rss_add · inputSchema.properties.url

medium Dynamic module load from a non-literal (src/plugins/loader.js)MTC-SRC-005

In the server's implementation (`src/plugins/loader.js:120`): Loading a module chosen at runtime (from a variable) can pull in and run attacker-influenced code paths. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: ath)}`; mod = await import(resolved); } else { // Load as npm package — use createRequire to resolve from cwd

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 src/plugins/loader.js

Tools 145

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

  • x_download_videoingests untrusted inputnetwork egress
  • x_get_repliesingests untrusted inputnetwork egress
  • x_get_threadingests untrusted inputnetwork egress
  • x_best_time_to_postnetwork egress
  • x_bookmarknetwork egress
  • x_create_pollnetwork egress
  • x_delete_tweetnetwork egress
  • x_detect_botsnetwork egress
  • x_generate_tweetnetwork egress
  • x_generate_variationsnetwork egress
Show 135 more tools ↓
  • x_get_exploreingests untrusted input
  • x_get_followersingests untrusted input
  • x_get_followingingests untrusted input
  • x_get_hashtagingests untrusted input
  • x_get_likersnetwork egress
  • x_get_likesingests untrusted input
  • x_get_mediaingests untrusted input
  • x_get_mentionsingests untrusted input
  • x_get_notificationsingests untrusted input
  • x_get_quote_tweetsnetwork egress
  • x_get_retweetersnetwork egress
  • x_get_tweetsingests untrusted input
  • x_history_getnetwork egress
  • x_likenetwork egress
  • x_monitor_reputationnetwork egress
  • x_optimize_tweetnetwork egress
  • x_post_threadnetwork egress
  • x_post_tweetnetwork egress
  • x_predict_performancenetwork egress
  • x_quote_tweetnetwork egress
  • x_replynetwork egress
  • x_retweetnetwork egress
  • x_rewrite_tweetnetwork egress
  • x_rss_addingests untrusted input
  • x_rss_checkingests untrusted input
  • x_rss_draftsingests untrusted input
  • x_schedule_postnetwork egress
  • x_scrape_spaceingests untrusted input
  • x_stream_startnetwork egress
  • x_suggest_hashtagsnetwork egress
  • x_track_engagementnetwork egress
  • x_account_reportno sensitive capability
  • x_analyze_sentimentno sensitive capability
  • x_analyze_voiceno sensitive capability
  • x_audience_insightsno sensitive capability
  • x_audience_overlapno sensitive capability
  • x_auto_commentno sensitive capability
  • x_auto_followno sensitive capability
  • x_auto_likeno sensitive capability
  • x_auto_retweetno sensitive capability
  • x_brand_monitorno sensitive capability
  • x_bulk_executeno sensitive capability
  • x_check_premiumno sensitive capability
  • x_clear_bookmarksno sensitive capability
  • x_compare_accountsno sensitive capability
  • x_competitor_analysisno sensitive capability
  • x_convert_formatno sensitive capability
  • x_creator_analyticsno sensitive capability
  • x_crm_searchno sensitive capability
  • x_crm_segmentno sensitive capability
  • x_crm_syncno sensitive capability
  • x_crm_tagno sensitive capability
  • x_crypto_analyzeno sensitive capability
  • x_dataset_getno sensitive capability
  • x_dataset_listno sensitive capability
  • x_detect_unfollowersno sensitive capability
  • x_diff_exportsno sensitive capability
  • x_engagement_reportno sensitive capability
  • x_evergreen_analyzeno sensitive capability
  • x_export_accountno sensitive capability
  • x_export_dmsno sensitive capability
  • x_find_influencersno sensitive capability
  • x_followno sensitive capability
  • x_follow_engagersno sensitive capability
  • x_follower_alertsno sensitive capability
  • x_get_analyticsno sensitive capability
  • x_get_blockedno sensitive capability
  • x_get_bookmarksno sensitive capability
  • x_get_conversationsno sensitive capability
  • x_get_list_membersno sensitive capability
  • x_get_listsno sensitive capability
  • x_get_non_followersno sensitive capability
  • x_get_post_analyticsno sensitive capability
  • x_get_profileno sensitive capability
  • x_get_recommendationsno sensitive capability
  • x_get_settingsno sensitive capability
  • x_get_spacesno sensitive capability
  • x_get_trendsno sensitive capability
  • x_graph_analyzeno sensitive capability
  • x_graph_buildno sensitive capability
  • x_graph_listno sensitive capability
  • x_graph_recommendationsno sensitive capability
  • x_grok_analyze_imageno sensitive capability
  • x_grok_queryno sensitive capability
  • x_grok_summarizeno sensitive capability
  • x_growth_rateno sensitive capability
  • x_history_snapshotno sensitive capability
  • x_import_datano sensitive capability
  • x_list_platformsno sensitive capability
  • x_loginno sensitive capability
  • x_migrate_accountno sensitive capability
  • x_monitor_accountno sensitive capability
  • x_monitor_keywordno sensitive capability
  • x_mute_userno sensitive capability
  • x_notify_sendno sensitive capability
  • x_notify_testno sensitive capability
  • x_persona_createno sensitive capability
  • x_persona_deleteno sensitive capability
  • x_persona_editno sensitive capability
  • x_persona_listno sensitive capability
  • x_persona_presetsno sensitive capability
  • x_persona_runno sensitive capability
  • x_persona_statusno sensitive capability
  • x_publish_articleno sensitive capability
  • x_reputation_reportno sensitive capability
  • x_schedule_addno sensitive capability
  • x_schedule_listno sensitive capability
  • x_schedule_removeno sensitive capability
  • x_search_tweetsno sensitive capability
  • x_send_dmno sensitive capability
  • x_smart_targetno sensitive capability
  • x_smart_unfollowno sensitive capability
  • x_space_joinno sensitive capability
  • x_space_leaveno sensitive capability
  • x_space_statusno sensitive capability
  • x_space_transcriptno sensitive capability
  • x_stream_historyno sensitive capability
  • x_stream_listno sensitive capability
  • x_stream_pauseno sensitive capability
  • x_stream_resumeno sensitive capability
  • x_stream_statusno sensitive capability
  • x_stream_stopno sensitive capability
  • x_summarize_threadno sensitive capability
  • x_team_createno sensitive capability
  • x_team_membersno sensitive capability
  • x_toggle_protectedno sensitive capability
  • x_unfollowno sensitive capability
  • x_unfollow_allno sensitive capability
  • x_unfollow_non_followersno sensitive capability
  • x_unmute_userno sensitive capability
  • x_update_profileno sensitive capability
  • x_workflow_actionsno sensitive capability
  • x_workflow_createno sensitive capability
  • x_workflow_listno sensitive capability
  • x_workflow_runno 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 3

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
v3.5.0 latest B 83/100 22 1.13.0 2026-09-07
v3.4.5 B 83/100 22 1.12.1 2026-08-03
v3.4.4 B 83/100 22 1.12.1 2026-08-02

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: B · 83/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/xactions/badge.svg)](https://mcptrustchecker.com/registry/xactions)
HTML
<a href="https://mcptrustchecker.com/registry/xactions"><img src="https://mcptrustchecker.com/registry/xactions/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/xactions/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 xactions --online

Use the free API → How scoring works

Other implementations of Xactions 1

Independent packages implementing the same tool, scanned with the same engine. Compare all 2 side by side →

More in Web, Search & Scraping