- Home
- MCP servers
- Marketing Master
Marketing Master
- javascript
1
GitHub Stars
javascript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"deeppath-ai-mcp-marketing-site": {
"command": "npx",
"args": [
"-y",
"mcp-marketing-site"
]
}
}
}You can run the Marketing Master – Landing Page Evaluator MCP server to analyze any landing page for structure, SEO, accessibility, and performance, and get automatic optimization suggestions with ready-to-apply code snippets.
How to use
Use an MCP client to invoke the Marketing Master MCP server. You can analyze any landing page URL and receive actionable insights on SEO compliance, layout structure (AIDA), color contrast, and loading speed. The server returns clear fix suggestions and example HTML snippets you can copy into your page.
Typical usage patterns include performing a single-page analysis for a new or updated landing page, batching multiple URLs for quick comparative reviews, and integrating the service into a CI pipeline to catch issues early. You do not need to write protocol-level requests; simply request an analysis for the target URL and interpret the structured results and suggested code.
How to install
Prerequisites: ensure you have Node.js and npm installed on your system.
-
Verify Node.js and npm are available.
-
Run the quick start to try the tool locally.
npx -y mcp-marketing-site
MCP server configuration example
If you want to run this as an MCP server, include the following configuration. It uses a local stdio-based runtime with npx to launch the package.
{
"mcpServers": {
"mcp-marketing-site": {
"command": "npx",
"args": [
"-y",
"mcp-marketing-site"
]
}
}
}
Configuration and usage notes
This MCP serves as a practical tool for product and marketing teams to assess landing pages and quickly apply improvements. You can run it from the command line to verify a URL, then use the suggested HTML snippets to enhance titles, meta tags, headers, CTAs, and accessibility features.
If you want to adjust how the server runs in your environment, you can pass additional arguments to npx as shown in the configuration example above.
Available tools
SEO Analysis
Checks title, meta tags, header tags H1–H6, image alt attributes, viewport, robots.txt, and sitemap to ensure proper indexing by search engines.
Layout Structure Review
Evaluates adherence to the AIDA structure and presence of key elements like headlines, CTAs, and testimonials.
Color Contrast Check
Verifies WCAG AA-compliant color contrast for readability and accessibility of button text against backgrounds.
PageSpeed Score
Fetches performance scores via the Google PageSpeed API and suggests optimizations to improve load times.
Fix Suggestions
Outputs actionable structural optimization advice and ready-to-apply HTML snippets.