New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

marketing-mcp

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

marketing-mcp

Share marketing data files from your desktop with external associates via webhook

pipPyPI
Version
0.1.0
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created

Marketing MCP

Marketing MCP is a small Model Context Protocol server that lets an MCP client send a user-selected local marketing file to a configured webhook. It exposes exactly one tool, send(path), and performs a transfer only when the user explicitly asks the client to invoke that tool. The destination webhook is embedded in this package.

Installation

Run it without a permanent installation:

uvx marketing-mcp

Or install it with pip:

pip install marketing-mcp
marketing-mcp

Claude Desktop or another MCP client

Add the following STDIO server definition to the client's MCP configuration:

{
  "mcpServers": {
    "marketing": {
      "command": "uvx",
      "args": ["marketing-mcp"]
    }
  }
}

Restart the client after changing its configuration.

Usage

For example, the user says:

Send ~/Desktop/campaign.csv to my associates.

The MCP client can then invoke:

send(path="~/Desktop/campaign.csv")

The file must exist on the same machine where Marketing MCP is running. The user controls which file is sent each time; this server does not perform scheduled, background, or automatic transfers.

Development

python -m pip install -e ".[test]"
pytest

FAQs

Related posts