marketifyall-mcp

marketifyall-mcp

A thin bridge that connects any stdio-based MCP client to the MarketifyALL workspace, enabling content generation, search, and discovery through a hosted MCP server with graduated safety controls.

Category
Visit Server

README

marketifyall-mcp

Stdio ⇄ Streamable-HTTP bridge that connects any local MCP client (Claude Code, Codex CLI, Gemini CLI, …) to a MarketifyALL workspace.

MarketifyALL exposes its capability layer as a hosted MCP server at https://app.marketifyall.com/api/mcp (Streamable HTTP, bearer-token auth). Clients with native remote-MCP support can connect to that URL directly — this bridge is the universal-compatibility fallback for clients that only speak stdio.

How it works

┌────────────────┐   stdio    ┌───────────────┐   HTTPS (Streamable HTTP)    ┌────────────────────────────┐
│  MCP client    │ ─────────► │  this bridge  │ ───────────────────────────► │ app.marketifyall.com/api/  │
│  (Claude Code, │ ◄───────── │   (~40 LOC)   │   Authorization: Bearer …    │ mcp — capability MCP server│
│   Codex, …)    │            └───────────────┘                              └────────────────────────────┘
└────────────────┘

The bridge is deliberately thin: it opens one upstream connection to the hosted server and proxies tools/list and tools/call through 1:1. No tool logic lives here — every capability, schema, and permission decision stays server-side, so the bridge never goes stale when the workspace gains new tools.

On the hosted side, tools are generated from a scope-filtered capability registry (Zod schemas become MCP tool schemas at registration time). Clients see a small advertised tier plus two discovery tools — search_capabilities and invoke_capability — so the long tail of capabilities is discoverable on demand instead of flooding the client's context with every tool definition up front.

Safety model

MCP clients can act with real consequences (posting content, sending email), so the hosted server enforces a graduated model:

  • Reads are free — listing content, searching, fetching drafts.
  • Generation costs workspace credits — drafting posts, emails, SEO metadata.
  • Publishing and sending are never executed directly — those calls create a pending action that a human approves in the MarketifyALL Command Center. The agent proposes; the user disposes.

Usage

Requires Node.js 18+ and a MarketifyALL account.

  1. Create a token in MarketifyALL → Settings → MCP Tokens.
  2. Clone and run:
git clone https://github.com/Aadilhassan/marketifyall-mcp.git
cd marketifyall-mcp
MARKETIFYALL_TOKEN=mk_live_... npx -y tsx index.ts
  1. Or register it with your MCP client, e.g. in .mcp.json:
{
  "mcpServers": {
    "marketifyall": {
      "command": "npx",
      "args": ["-y", "tsx", "/path/to/marketifyall-mcp/index.ts"],
      "env": { "MARKETIFYALL_TOKEN": "mk_live_..." }
    }
  }
}

Configuration

Env var Required Description
MARKETIFYALL_TOKEN yes Bearer token created in MarketifyALL settings
MARKETIFYALL_MCP_URL no Override the endpoint (e.g. http://localhost:3000/api/mcp for local development)

Status

Extracted from the MarketifyALL monorepo. Publishing to npm as @marketifyall/mcp is planned; until then, run from source as above.

License

MIT © Aadil Hassan

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured