An early-stage MCP (Model Context Protocol) server for marketing analytics, built with Rust, Actix-web, and async-graphql.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"marketing-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An early-stage MCP (Model Context Protocol) server for marketing analytics, built with Rust, Actix-web, and async-graphql.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in marketing / analytics
MCP Server for GCP environment for interacting with various Observability APIs.
⚡ A Simple / Speedy / Secure Link Shortener with Analytics, 100% run on Cloudflare.
DataForSEO API modelcontextprotocol server
一键同步文章到多个内容平台,支持今日头条、WordPress、知乎、简书、掘金、CSDN、typecho各大平台,一次发布,多平台同步发布。解放个人生产力
MCP Security Weekly
Get CVE alerts and security updates for Marketing Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An early-stage MCP (Model Context Protocol) server for marketing analytics, built with Rust, Actix-web, and async-graphql.
Status: Very early work in progress / scaffolding. The server starts and the MCP + GraphQL endpoints are wired up, but most domain logic is not yet implemented.
marketing-mcp-server is a Rust service that exposes two APIs simultaneously:
async-graphql) for querying marketing metricsrmcp) at /api/v1/mcp, allowing AI assistants to call the server as a toolThe intended domain covers marketing analytics concepts such as CPA (Cost Per Acquisition), churn rate, and integrations with platforms like Salesforce, SAP, and Microsoft 365 — though these are currently stubs.
marketing-mcp-server/
└── src/
├── main.rs # Actix-web server, mounts GraphQL + MCP routes
├── mcp.rs # MCP ServerHandler implementation (rmcp)
├── analytics.rs # Marketing metrics types (CPA, churn rate — stubs)
├── graphql.rs # GraphQL schema entry point
├── math.rs # Utility calculations
├── salesforce.rs # Salesforce integration (placeholder)
├── sap.rs # SAP integration (placeholder)
└── ms365.rs # Microsoft 365 integration (placeholder)
cargo run
The server starts on 127.0.0.1:8000.
http://127.0.0.1:8000/http://127.0.0.1:8000/api/v1/mcpactix-web — HTTP serverasync-graphql — GraphQL schema and executionrmcp — Rust MCP SDK (StreamableHttpService)