Slack Mpm MCP Server

slack-mpm PyPI v0.1.8

Published by an unidentified publisher — no publish provenance and no public repository, so the publisher could not be verified and the source cannot be independently located.

MCP server for Slack workspace integration

Trust grade
A
91/100
Last scanned get badge →
Trust
A · 91/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
High
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 99 − adoption risk = 91/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 − 1.2 = 99. What the published surface and source actually contain:

PointsWhat was foundCategory
−1.2 Hardcoded Slack token in test/example/packaging MTC-SRC-008 exfiltration

2. Client adoption risk — 99 − 8 = 91. 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
−6 capability blast radius (high) — client exposure if the model is manipulated
−2 publisher verification (unlinked) — no provenance/repo link, but the shipped source was fully read

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 9

critical Completed toxic-flow trifecta across toolsMTC-FLOW-002

This server (without client built-ins) exposes a complete data-exfiltration chain: get_thread_replies → list_files ⇒ send_message. Untrusted input is ingested, private data is read, and it can be sent to an external sink — and at least one leg is a direct schema wire (⇒), where a producer's output drops straight into a free-text parameter of the next tool, so the chain needs little agent cooperation. Static analysis proves the primitive exists, not that a specific run will occur.

Fix: Remove one leg of the trifecta: isolate untrusted-input tools from secret-reading tools and from egress tools, or require human approval between them.

Location: flow get_thread_replies → list_files → send_message

high Read-and-egress in one tool: "upload_file"MTC-FLOW-003

Tool "upload_file" can both read sensitive data and send data to an external destination. Even without an explicit untrusted-input leg, this is a single-call data-exfiltration path if the model is ever manipulated.

Fix: Separate reading from sending; require explicit user confirmation before egress of file/secret contents.

Location: flow upload_file

medium Tool "delete_file" can modify the filesystemMTC-CAP-002

Tool "delete_file" can write, overwrite or delete files (keyword "delete_file" in tool name). Verify it is scoped to a safe directory.

Fix: Constrain file operations to an explicit, non-sensitive root; reject path traversal.

Location: tool delete_file

medium Dynamic module load from a non-literal (src/slack_mpm/cli/main.py)MTC-SRC-005

In the server's implementation (`src/slack_mpm/cli/main.py:112`): 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: try: __import__(module) click.echo(f" {name}: [{click.style('OK', fg='green')}]")

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/slack_mpm/cli/main.py

low Hardcoded Slack token in test/example/packaging (tests/test_auth.py)MTC-SRC-008

A hardcoded Slack token (a live-looking credential hardcoded in shipped code) appears in `tests/test_auth.py:98`. Verify whether this is a real credential; if so, remove and rotate it.

Evidence: Slack token: xoxb…(redacted)

Fix: Remove the secret, rotate it, and load credentials from the environment or a secret store.

Location: server tests/test_auth.py

low Mutating tool "delete_file" declares no destructiveHintMTC-CAP-005

Tool "delete_file" can mutate/egress but declares no destructiveHint. Clients that don't default to spec-safe behavior may not prompt before running it.

Fix: Declare accurate annotations, and gate destructive tools on user confirmation regardless.

Location: tool delete_file

low Unconstrained path parameter "file_path" on "upload_file"MTC-CAP-008

Tool "upload_file" takes a path parameter "file_path" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool upload_file · inputSchema.properties.file_path

low Unconstrained path parameter "filename" on "upload_file"MTC-CAP-008

Tool "upload_file" takes a path parameter "filename" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool upload_file · inputSchema.properties.filename

low Unconstrained path parameter "file" on "delete_file"MTC-CAP-008

Tool "delete_file" takes a path parameter "file" with no constraint. Without a canonicalize-and-contain check (not visible statically), this permits ../ traversal outside the intended root.

Fix: Resolve and verify the path stays within an allowed root; reject traversal sequences.

Location: tool delete_file · inputSchema.properties.file

Tools 64

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

  • upload_filereads sensitive datanetwork egress
  • delete_filewrites files
  • get_thread_repliesingests untrusted input
  • list_filesreads sensitive data
  • list_historyingests untrusted input
  • list_list_itemsingests untrusted input
  • search_messagesingests untrusted input
  • send_messagenetwork egress
  • add_bookmarkno sensitive capability
  • add_reactionno sensitive capability
Show 54 more tools ↓
  • add_reminderno sensitive capability
  • archive_channelno sensitive capability
  • auth_testno sensitive capability
  • complete_reminderno sensitive capability
  • create_canvasno sensitive capability
  • create_channelno sensitive capability
  • create_channel_canvasno sensitive capability
  • create_listno sensitive capability
  • create_list_itemno sensitive capability
  • delete_canvasno sensitive capability
  • delete_canvas_accessno sensitive capability
  • delete_list_accessno sensitive capability
  • delete_list_itemno sensitive capability
  • delete_list_itemsno sensitive capability
  • delete_messageno sensitive capability
  • delete_reminderno sensitive capability
  • delete_scheduled_messageno sensitive capability
  • edit_canvasno sensitive capability
  • get_bot_infono sensitive capability
  • get_channel_infono sensitive capability
  • get_file_infono sensitive capability
  • get_list_itemno sensitive capability
  • get_permalinkno sensitive capability
  • get_user_by_emailno sensitive capability
  • get_user_infono sensitive capability
  • get_workspace_infono sensitive capability
  • invite_to_channelno sensitive capability
  • join_channelno sensitive capability
  • kick_from_channelno sensitive capability
  • list_bookmarksno sensitive capability
  • list_channelsno sensitive capability
  • list_emojisno sensitive capability
  • list_remindersno sensitive capability
  • list_scheduled_messagesno sensitive capability
  • list_user_channelsno sensitive capability
  • list_usersno sensitive capability
  • lookup_canvas_sectionsno sensitive capability
  • markdown_to_canvasno sensitive capability
  • markdown_to_listno sensitive capability
  • open_dmno sensitive capability
  • pin_messageno sensitive capability
  • remove_bookmarkno sensitive capability
  • remove_reactionno sensitive capability
  • reply_in_threadno sensitive capability
  • schedule_messageno sensitive capability
  • send_ephemeralno sensitive capability
  • set_canvas_accessno sensitive capability
  • set_channel_topicno sensitive capability
  • set_list_accessno sensitive capability
  • share_fileno sensitive capability
  • unpin_messageno sensitive capability
  • update_listno sensitive capability
  • update_list_itemno sensitive capability
  • update_messageno sensitive capability

Toxic flows 2

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

What this scan could not see

Versions 1

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.8 latest A 91/100 9 1.13.0 2026-08-25

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