We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ohnicholas93/payload-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•404 B
"""
Payload CMS MCP Server Package
A Model Context Protocol (MCP) server for interacting with Payload CMS.
"""
import sys
import logging
# Defer the import to avoid circular dependency when running as module
def __getattr__(name):
if name == "main":
from .server import main
return main
raise AttributeError(f"module {__name__!r} has no attribute {name!r}")
__all__ = ["main"]