{
"mcpServers": {
"payloadcmsmcp": {
"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.
Payload CMS MCP Server
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 389 days ago. 111 stars.
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.
Persistent memory using a knowledge graph
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Payloadcmsmcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The Payload CMS 3.0 MCP Server is a specialized Model Context Protocol server designed to enhance your Payload CMS development experience. It helps developers build better Payload CMS applications by providing code validation, template generation, and project scaffolding capabilities that follow best practices.
<hr>validate - Validate code for collections, fields, globals, and configquery - Query validation rules and best practicesmcp_query - Execute SQL-like queries for Payload CMS structuresgenerate_template - Generate code templates for various componentsgenerate_collection - Create complete collection definitionsgenerate_field - Generate field definitions with proper typingscaffold_project - Create entire Payload CMS project structuresvalidate_scaffold_options - Ensure scaffold options follow best practices (used internally by scaffold_project)validateValidates Payload CMS code for syntax and best practices.
Parameters:
code (string): The code to validatefileType (enum): Type of file - "collection", "field", "global", or "config"Example Prompt:
Can you validate this Payload CMS collection code?
```typescript
export const Posts = {
slug: 'posts',
fields: [
{
name: 'title',
type: 'text',
required: true,
},
{
name: 'content',
type: 'richText',
}
],
admin: {
useAsTitle: 'title',
}
}
queryQueries validation rules and best practices for Payload CMS.
Parameters:
query (string): The query stringfileType (optional enum): Type of file - "collection", "field", "global", or "config"Example Prompt:
What are the best practices for implementing access control in Payload CMS collections?
mcp_queryExecutes SQL-like queries against Payload CMS structures.
Parameters:
sql (string): SQL-like query stringExample Prompt:
Can you execute this query to find all valid field types in Payload CMS?
SELECT field_types FROM payload_schema WHERE version = '3.0'