
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
post-bridge-mcp
Advanced tools
Unofficial Post Bridge MCP server (FastMCP). Provides a local MCP server that talks to the Post Bridge API so you can schedule/publish content from MCP-compatible clients.
We provide OS-specific prebuilt binaries on the Releases page. Pick the latest release, download the binary for your OS, set the required environment variables, and run it.
Releases: https://github.com/xSAVIKx/post-bridge-mcp/releases
Note about file names (from our CI config):
post-bridge-mcp-macos-<version>post-bridge-mcp-ubuntu-<version>post-bridge-mcp-windows-<version>gemini extensions install https://github.com/xSAVIKx/post-bridge-mcp
# 1) Download the latest macOS binary (replace 0.1.6 with the latest version)
VERSION=0.1.6
curl -L -o post-bridge-mcp "https://github.com/xSAVIKx/post-bridge-mcp/releases/download/v$VERSION/post-bridge-mcp-macos-$VERSION"
chmod +x post-bridge-mcp
# 2) Required environment variables
export POST_BRIDGE_API_TOKEN="<your_api_token>"
# Optional (defaults to https://api.post-bridge.com)
# export POST_BRIDGE_API_BASE_URL="https://api.post-bridge.com"
# 3) Run
./post-bridge-mcp
# 1) Download the latest Linux binary (replace 0.1.6 with the latest version)
VERSION=0.1.6
curl -L -o post-bridge-mcp "https://github.com/xSAVIKx/post-bridge-mcp/releases/download/v$VERSION/post-bridge-mcp-ubuntu-$VERSION"
chmod +x post-bridge-mcp
# 2) Required environment variables
export POST_BRIDGE_API_TOKEN="<your_api_token>"
# Optional (defaults to https://api.post-bridge.com)
# export POST_BRIDGE_API_BASE_URL="https://api.post-bridge.com"
# 3) Run
./post-bridge-mcp
# 1) Download the latest Windows binary (replace 0.1.6 with the latest version)
$version = "0.1.6"
$asset = "post-bridge-mcp-windows-$version.exe"
$uri = "https://github.com/xSAVIKx/post-bridge-mcp/releases/download/v$version/$asset"
Invoke-WebRequest -Uri $uri -OutFile "post-bridge-mcp.exe"
# 2) Required environment variables (for current session)
$env:POST_BRIDGE_API_TOKEN = "<your_api_token>"
# Optional (defaults to https://api.post-bridge.com)
# $env:POST_BRIDGE_API_BASE_URL = "https://api.post-bridge.com"
# 3) Run
./post-bridge-mcp.exe
If you prefer not to use prebuilt binaries, you can install the package and run the CLI with Bun or Node.
# Install
bun add post-bridge-mcp
# Set env vars (bash/zsh example)
export POST_BRIDGE_API_TOKEN="<your_api_token>"
# export POST_BRIDGE_API_BASE_URL="https://api.post-bridge.com" # optional
# Run with Bun directly from the installed package
bun node_modules/post-bridge-mcp/dist/cli.js
# Or run with Node
node node_modules/post-bridge-mcp/dist/cli.js
Notes:
bun src/cli.ts.These must be available in the process environment when starting the server:
POST_BRIDGE_API_TOKEN (required): Your Post Bridge API token. If missing, the server will exit
with an error.POST_BRIDGE_API_BASE_URL (optional): Base URL for the Post Bridge API. Defaults to
https://api.post-bridge.com.Please see CONTRIBUTING.md for contribution guidelines.
MIT
FAQs
Post-bridge unofficial MCP server
The npm package post-bridge-mcp receives a total of 12 weekly downloads. As such, post-bridge-mcp popularity was classified as not popular.
We found that post-bridge-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.