Payload CMS MCP Server
- public
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Deployment Options | Payload CMS MCP Server</title>
<link rel="icon" href="/logopayload.png" type="image/png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
:root {
--primary: #5046e5;
--primary-light: #6a62ff;
--primary-dark: #3f37c9;
--secondary: #2d3748;
--secondary-light: #4a5568;
--secondary-dark: #1a202c;
--accent: #f6ad55;
--accent-light: #fbd38d;
--accent-dark: #ed8936;
--success: #48bb78;
--error: #f56565;
--warning: #ecc94b;
--info: #4299e1;
--background: #f7fafc;
--text: #2d3748;
--text-light: #4a5568;
--text-dark: #1a202c;
--border: #e2e8f0;
--border-light: #edf2f7;
--border-dark: #cbd5e0;
--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
--radius: 0.375rem;
--radius-lg: 0.5rem;
--radius-sm: 0.25rem;
--transition: all 0.3s ease;
--secondary: #2a2a2a;
--accent: #ff6b6b;
--light: #f5f5f7;
--dark: #121212;
--gray: #888;
--border-radius: 12px;
--box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
--primary-color: #6366f1;
--primary-hover: #4f46e5;
--secondary-color: #0ea5e9;
--text-color: #1e293b;
--light-text: #64748b;
--bg-color: #ffffff;
--light-bg: #f8fafc;
--border-color: #e2e8f0;
--radius: 8px;
--shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
html {
scroll-behavior: smooth;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
color: var(--secondary);
background-color: var(--light);
overflow-x: hidden;
}
.container {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}
header {
background-color: var(--dark);
color: white;
padding: 1.5rem 0;
position: sticky;
top: 0;
z-index: 100;
box-shadow: var(--box-shadow);
}
.header-content {
display: flex;
justify-content: space-between;
align-items: center;
position: relative;
}
.logo {
font-size: 1.5rem;
font-weight: 700;
color: white;
text-decoration: none;
display: flex;
align-items: center;
gap: 1rem;
z-index: 1001;
position: relative;
transition: all 0.3s ease;
}
.logo:hover .logo-icon {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.logo-image {
width: 60px;
height: 60px;
border-radius: 10px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
transition: all 0.3s ease;
object-fit: contain;
background-color: white;
padding: 5px;
animation: subtle-pulse 3s ease-in-out infinite;
flex-shrink: 0;
display: block;
}
.logo-text {
display: inline-block;
white-space: nowrap;
overflow: visible;
text-overflow: unset;
max-width: none;
transition: all 0.3s ease;
line-height: 1.1;
}
.version-text {
display: inline-block;
margin-left: 3px;
}
@keyframes subtle-pulse {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.logo:hover .logo-image {
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
animation: none;
}
.logo-icon {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
width: 40px;
height: 40px;
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
letter-spacing: -0.5px;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
}
.logo-icon::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: 0.5s;
}
.logo:hover .logo-icon::before {
left: 100%;
}
nav ul {
display: flex;
list-style: none;
gap: 2rem;
}
nav a {
color: white;
text-decoration: none;
font-weight: 500;
transition: var(--transition);
position: relative;
}
nav a:hover {
color: var(--primary-light);
}
nav a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(--primary-light);
transition: var(--transition);
}
nav a:hover::after {
width: 100%;
}
main {
padding: 2rem 0;
}
.section {
margin-bottom: 4rem;
}
.section-title {
margin-bottom: 2rem;
text-align: center;
}
.section-title h2 {
font-size: 2rem;
color: var(--text-dark);
margin-bottom: 0.5rem;
}
.section-title p {
color: var(--text-light);
max-width: 600px;
margin: 0 auto;
}
.setup-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.setup-step {
background-color: white;
border-radius: var(--radius);
box-shadow: var(--shadow);
padding: 1.5rem;
transition: var(--transition);
}
.setup-step:hover {
box-shadow: var(--shadow-lg);
transform: translateY(-5px);
}
.setup-step h3 {
color: var(--primary);
margin-bottom: 1rem;
font-size: 1.25rem;
}
.setup-step h4 {
color: var(--text-dark);
margin: 1.5rem 0 0.75rem;
font-size: 1.1rem;
}
.setup-step p {
margin-bottom: 1rem;
}
.setup-step ul, .setup-step ol {
margin-left: 1.5rem;
margin-bottom: 1rem;
}
.setup-step li {
margin-bottom: 0.5rem;
}
.code-block {
background-color: var(--secondary-dark);
border-radius: var(--radius-sm);
padding: 1rem;
margin: 1rem 0;
overflow-x: auto;
}
.code-block code {
color: white;
display: block;
font-family: 'Courier New', Courier, monospace;
line-height: 1.5;
}
.code-block code + code {
margin-top: 0.5rem;
}
footer {
background-color: var(--dark);
color: white;
padding: 4rem 0 2rem;
}
.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
margin-bottom: 3rem;
}
.footer-column h3 {
font-size: 1.25rem;
margin-bottom: 1.5rem;
color: white;
}
.footer-column ul {
list-style: none;
}
.footer-column ul li {
margin-bottom: 0.75rem;
}
.footer-column a {
color: #ccc;
text-decoration: none;
transition: var(--transition);
}
.footer-column a:hover {
color: var(--primary-light);
}
.footer-column p {
color: #ccc;
margin-bottom: 1rem;
}
.footer-bottom {
text-align: center;
padding-top: 2rem;
border-top: 1px solid #333;
color: #888;
}
.footer-bottom p {
margin-bottom: 1rem;
}
.social-links {
display: flex;
justify-content: center;
gap: 1.5rem;
margin-top: 1rem;
}
.social-links a {
color: #ccc;
font-size: 1.25rem;
transition: var(--transition);
display: flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.1);
}
.social-links a:hover {
color: var(--primary-light);
background-color: rgba(255, 255, 255, 0.2);
transform: translateY(-3px);
}
.social-icon {
filter: invert(0.8);
transition: var(--transition);
}
.social-links a:hover .social-icon {
filter: invert(0.5) sepia(1) saturate(5) hue-rotate(175deg);
}
.btn {
display: inline-block;
padding: 0.75rem 1.5rem;
border-radius: var(--radius);
font-weight: 600;
text-decoration: none;
transition: var(--transition);
cursor: pointer;
}
.btn:hover {
transform: translateY(-2px);
}
.footer-column .btn {
background-color: var(--primary);
color: white;
}
.footer-column .btn:hover {
background-color: var(--primary-light);
}
/* Mobile navigation styles */
.mobile-nav-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
z-index: 1001;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
width: 44px;
height: 44px;
border-radius: 50%;
transition: all 0.3s ease;
background-color: transparent;
box-shadow: none;
}
.mobile-nav-toggle:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.mobile-nav-toggle:active {
transform: translateY(-50%) scale(0.95);
}
/* Classic hamburger icon */
.hamburger-icon {
width: 24px;
height: 18px;
position: relative;
margin: 0 auto;
transform: rotate(0deg);
transition: .5s ease-in-out;
}
.hamburger-icon span {
display: block;
position: absolute;
height: 2px;
width: 100%;
background: white;
border-radius: 4px;
opacity: 1;
left: 0;
transform: rotate(0deg);
transition: .25s ease-in-out;
}
.hamburger-icon span:nth-child(1) {
top: 0px;
width: 80%;
right: 0;
left: auto;
}
.hamburger-icon span:nth-child(2) {
top: 8px;
}
.hamburger-icon span:nth-child(3) {
top: 16px;
width: 80%;
right: 0;
left: auto;
}
.mobile-nav-toggle.active .hamburger-icon span:nth-child(1) {
top: 8px;
transform: rotate(135deg);
width: 100%;
left: 0;
}
.mobile-nav-toggle.active .hamburger-icon span:nth-child(2) {
opacity: 0;
left: -60px;
}
.mobile-nav-toggle.active .hamburger-icon span:nth-child(3) {
top: 8px;
transform: rotate(-135deg);
width: 100%;
left: 0;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 99;
backdrop-filter: blur(2px);
transition: opacity 0.3s ease;
opacity: 0;
visibility: hidden;
display: none;
}
.overlay.active {
opacity: 1;
visibility: visible;
display: block;
}
.github-link {
display: flex;
align-items: center;
gap: 5px;
}
.nav-icon {
filter: invert(1);
transition: var(--transition);
}
.github-link:hover .nav-icon {
filter: invert(0.7) sepia(1) saturate(5) hue-rotate(175deg);
}
.no-scroll {
overflow: hidden;
position: fixed;
width: 100%;
height: 100%;
}
@media (max-width: 768px) {
.setup-steps {
grid-template-columns: 1fr;
}
.header-content {
padding: 0.5rem 0;
}
nav ul {
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
}
.footer-bottom {
flex-direction: column;
gap: 1rem;
text-align: center;
}
.footer-content {
grid-template-columns: 1fr;
gap: 2rem;
}
.mobile-nav-toggle {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
nav {
position: fixed;
top: 0;
right: -100%;
width: 80%;
max-width: 300px;
height: 100vh;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
padding: 5rem 2rem 2rem;
transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
z-index: 999;
box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
overflow-y: auto;
border-left: none;
border-radius: 0 0 0 20px;
}
nav.active {
right: 0;
}
nav ul {
flex-direction: column;
gap: 1.5rem;
align-items: flex-start;
}
nav a {
display: block;
padding: 0.5rem 0;
font-size: 1.1rem;
width: 100%;
color: white;
border-bottom: 1px solid rgba(255, 255, 255, 0.2);
padding-bottom: 0.8rem;
}
nav a:hover {
color: white;
opacity: 0.8;
}
nav a::after {
bottom: 0;
background-color: white;
}
.header-content {
flex-direction: row;
justify-content: space-between;
}
}
/* Additional Responsive Breakpoints */
@media (max-width: 480px) {
.container {
padding: 0 1rem;
}
.logo {
font-size: 1rem;
gap: 0.4rem;
align-items: center;
}
.logo-icon {
width: 28px;
height: 28px;
font-size: 0.9rem;
}
.logo-image {
width: 45px;
height: 45px;
padding: 3px;
margin-right: 0;
}
.logo span {
font-size: 0.85rem;
}
.logo-text {
max-width: none;
line-height: 1.1;
font-size: 0.85rem;
}
.mobile-nav-toggle {
width: 36px;
height: 36px;
right: 0.5rem;
}
.mobile-nav-toggle span {
width: 22px;
height: 2px;
}
header {
padding: 0.8rem 0;
}
nav {
width: 85%;
padding: 4.5rem 1.5rem 1.5rem;
}
}
/* Touch-friendly improvements */
@media (hover: none) {
.feature-card:hover, .tool-card:hover, .setup-step:hover {
transform: none;
}
.btn:hover {
transform: none;
}
nav a {
padding: 0.7rem 0; /* Larger touch target */
}
.footer-column a {
padding: 0.3rem 0;
display: inline-block;
}
}
</style>
</head>
<body>
<header role="banner">
<div class="container header-content">
<a href="/" class="logo" aria-label="Payload CMS MCP Server Home">
<img src="/logopayload.png" alt="Payload CMS MCP Server" class="logo-image" width="60" height="60" loading="eager">
<span class="logo-text">
<strong>Payload CMS MCP Server</strong>
</span>
</a>
<button class="mobile-nav-toggle" aria-label="Toggle navigation menu" aria-expanded="false">
<div class="hamburger-icon">
<span></span>
<span></span>
<span></span>
</div>
</button>
<nav role="navigation" aria-label="Main Navigation">
<ul>
<li><a href="/#features">Features</a></li>
<li><a href="/#tools">Capabilities</a></li>
<li><a href="/#api">Integration</a></li>
<li><a href="/#setup">Setup</a></li>
<li><a href="/deployment.html">Deployment Options</a></li>
<li><a href="https://github.com/Matmax-Worldwide/payloadcmsmcp" target="_blank" rel="noopener noreferrer" class="github-link">
<img src="/images/github-icon.svg" alt="GitHub" width="18" height="18" class="nav-icon">
GitHub
</a></li>
</ul>
</nav>
<div class="overlay"></div>
</div>
</header>
<main>
<section id="deployment-options" class="section">
<div class="container">
<div class="section-title">
<h2>Deployment Options</h2>
<p>Choose the deployment method that works best for your needs.</p>
</div>
<div class="setup-steps">
<!-- Railway Deployment Section -->
<div class="setup-step">
<h3>Deploy on Railway (Recommended)</h3>
<p>The easiest way to deploy the MCP server is using Railway's one-click deployment:</p>
<div style="text-align:center; margin: 20px 0;">
<a href="https://railway.com/new" target="_blank">
<img src="https://railway.app/button.svg" alt="Deploy on Railway">
</a>
</div>
<h4>Detailed Railway Deployment Guide</h4>
<ol>
<li>Create a Railway account at <a href="https://railway.com" target="_blank">railway.com</a></li>
<li>Deploy the MCP server using the provided button</li>
<li>Wait for deployment completion and verify via the provided URL</li>
</ol>
</div>
<!-- Local Deployment Section -->
<div class="setup-step">
<h3>Run Locally</h3>
<p>For local development or testing, follow these steps:</p>
<div class="code-block">
<code>npm install -g payload-cms-mcp</code>
<code>payload-cms-mcp</code>
</div>
<p>Your server will be available at <code>http://localhost:8080</code> by default.</p>
</div>
<!-- NPM Package Section -->
<div class="setup-step">
<h3>NPM Package</h3>
<p>The MCP server is available as an npm package:</p>
<div style="text-align:center; margin: 20px 0;">
<a href="https://www.npmjs.com/package/payload-cms-mcp" target="_blank">
<img src="https://img.shields.io/npm/v/payload-cms-mcp.svg?style=for-the-badge" alt="npm version">
<img src="https://img.shields.io/npm/dm/payload-cms-mcp.svg?style=for-the-badge" alt="npm downloads">
</a>
</div>
<p>Install as a dependency:</p>
<div class="code-block">
<code>npm install --save payload-cms-mcp</code>
</div>
<h4>Configuring in Cursor IDE</h4>
<p>After installing the npm package, follow these steps to configure it in Cursor IDE:</p>
<ol>
<li>Open Cursor IDE</li>
<li>Go to Settings (gear icon in the bottom left)</li>
<li>Navigate to "MCP Servers" section</li>
<li>Click "Add MCP Server"</li>
<li>Fill in the following details:
<ul>
<li><strong>Name:</strong> "Payload CMS 3.0 MCP"</li>
<li><strong>Transport Type:</strong> "Command"</li>
<li><strong>Command:</strong> <code>payload-cms-mcp</code> (if installed globally) or <code>npx payload-cms-mcp</code> (if installed locally)</li>
</ul>
</li>
<li>Click "Save"</li>
</ol>
<p>You can now use the MCP server in your Cursor IDE by referencing it in your prompts:</p>
<div class="code-block">
<code>// Example prompt</code>
<code>"Generate a Payload CMS collection for a blog with title, content, and author fields."</code>
</div>
</div>
</div>
</div>
</section>
</main>
<footer role="contentinfo">
<div class="container">
<div class="footer-content">
<div class="footer-column">
<h3>Payload CMS 3.0 Resources</h3>
<ul>
<li><a href="https://github.com/Matmax-Worldwide/payloadcmsmcp" target="_blank" rel="noopener noreferrer">GitHub Repository</a></li>
<li><a href="https://payloadcms.com/docs" target="_blank" rel="noopener noreferrer">Payload CMS 3.0 Docs</a></li>
<li><a href="https://github.com/payloadcms/payload" target="_blank" rel="noopener noreferrer">Payload CMS GitHub</a></li>
<li><a href="https://discord.com/invite/payload" target="_blank" rel="noopener noreferrer">Payload CMS Discord</a></li>
</ul>
</div>
<div class="footer-column">
<h3>Quick Links</h3>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#tools">Payload CMS 3.0 Capabilities</a></li>
<li><a href="#setup">Getting Started</a></li>
<li><a href="#api">AI Integration</a></li>
</ul>
</div>
<div class="footer-column">
<h3>About Us</h3>
<p>Explore our vision for human-centered technology and join our community dedicated to wellness and meaningful innovation.</p>
<a href="https://matmax.world" class="btn" target="_blank" rel="noopener noreferrer" style="margin-top: 1rem;">Visit matmax.world</a>
</div>
</div>
<div class="footer-bottom">
<p>Β© 2025 MATMAX WORLDWIDE. Made with β€οΈ for humanity.</p>
<div class="social-links">
<a href="https://github.com/Matmax-Worldwide" target="_blank" rel="noopener noreferrer" aria-label="GitHub">
<img src="/images/github-icon.svg" alt="GitHub" width="24" height="24" class="social-icon">
</a>
<a href="https://instagram.com/matmaxyoga" target="_blank" rel="noopener noreferrer" aria-label="Instagram">
<img src="/images/instagram-icon.svg" alt="Instagram" width="24" height="24" class="social-icon">
</a>
<a href="https://www.linkedin.com/company/the-wellness-brand" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn">
<img src="/images/linkedin-icon.svg" alt="LinkedIn" width="24" height="24" class="social-icon">
</a>
</div>
</div>
</div>
</footer>
<!-- Structured data for Organization -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "MATMAX WORLDWIDE",
"url": "https://matmax.world",
"logo": "https://www.payloadcmsmcp.info/00Matmax-world-logo-_1_-svg.png",
"sameAs": [
"https://github.com/Matmax-Worldwide",
"https://instagram.com/matmaxyoga",
"https://www.linkedin.com/company/the-wellness-brand"
],
"subOrganization": {
"@type": "Organization",
"name": "Payload CMS MCP Server",
"url": "https://www.payloadcmsmcp.info/",
"logo": "https://www.payloadcmsmcp.info/00Matmax-world-logo-_1_-svg.png"
}
}
</script>
<!-- Add the same scripts as in index.html -->
<script>
// Smooth scrolling for navigation links
document.addEventListener('DOMContentLoaded', function() {
const navLinks = document.querySelectorAll('nav a[href^="#"]');
const footerLinks = document.querySelectorAll('.footer-column a[href^="#"]');
const allLinks = [...navLinks, ...footerLinks];
allLinks.forEach(link => {
link.addEventListener('click', function(e) {
if (this.getAttribute('href').startsWith('#')) {
e.preventDefault();
const targetId = this.getAttribute('href');
const targetElement = document.querySelector(targetId);
if (targetElement) {
const headerHeight = document.querySelector('header').offsetHeight;
const targetPosition = targetElement.getBoundingClientRect().top + window.pageYOffset - headerHeight;
window.scrollTo({
top: targetPosition,
behavior: 'smooth'
});
// Close mobile menu if open
if (document.querySelector('nav').classList.contains('active')) {
toggleMobileNav();
}
}
}
});
});
// Mobile Navigation Toggle
const mobileNavToggle = document.querySelector('.mobile-nav-toggle');
const nav = document.querySelector('nav');
const overlay = document.querySelector('.overlay');
const body = document.body;
function toggleMobileNav() {
mobileNavToggle.classList.toggle('active');
nav.classList.toggle('active');
overlay.classList.toggle('active');
body.classList.toggle('no-scroll');
// Update aria-expanded attribute
const isExpanded = mobileNavToggle.getAttribute('aria-expanded') === 'true';
mobileNavToggle.setAttribute('aria-expanded', !isExpanded);
// Add focus trap for accessibility
if (nav.classList.contains('active')) {
// Focus the first link in the menu
setTimeout(() => {
nav.querySelector('a').focus();
}, 100);
}
}
mobileNavToggle.addEventListener('click', toggleMobileNav);
overlay.addEventListener('click', toggleMobileNav);
// Close menu when pressing Escape key
document.addEventListener('keydown', function(e) {
if (e.key === 'Escape' && nav.classList.contains('active')) {
toggleMobileNav();
}
});
// Handle window resize
window.addEventListener('resize', function() {
if (window.innerWidth > 768 && nav.classList.contains('active')) {
toggleMobileNav();
}
});
// Prevent body scrolling when menu is open
function preventScroll(e) {
if (body.classList.contains('no-scroll')) {
e.preventDefault();
}
}
// Apply to touch devices
document.addEventListener('touchmove', preventScroll, { passive: false });
});
// Add no-scroll class to body
document.head.insertAdjacentHTML('beforeend', `
<style>
.no-scroll {
overflow: hidden;
position: fixed;
width: 100%;
height: 100%;
}
@media (prefers-reduced-motion: reduce) {
* {
transition: none !important;
animation: none !important;
scroll-behavior: auto !important;
}
}
</style>
`);
</script>
</body>
</html>