An early-stage MCP (Model Context Protocol) server for marketing analytics, built with Rust, Actix-web, and async-graphql.
{
"mcpServers": {
"marketing-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
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.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Last commit 27 days ago.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Dynamic problem-solving through sequential thought chains
A Model Context Protocol server for searching and analyzing arXiv papers
An open-source AI agent that brings the power of Gemini directly into your terminal.
The official Python SDK for Model Context Protocol servers and clients
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)