We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jgardner04/Ghost-MCP-Server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.js•960 B
/**
* Centralized Zod Schema Library for Ghost MCP Server
*
* This module exports all validation schemas for Ghost CMS resources.
* Use these schemas for consistent input/output validation across all MCP tools.
*
* @example
* import { createPostSchema, tagQuerySchema } from './schemas/index.js';
*
* // Validate input
* const validatedPost = createPostSchema.parse(inputData);
*
* // Safe parse with error handling
* const result = tagQuerySchema.safeParse(queryParams);
* if (!result.success) {
* console.error(result.error);
* }
*/
// Common validators and utilities
export * from './common.js';
// Post schemas
export * from './postSchemas.js';
// Page schemas
export * from './pageSchemas.js';
// Tag schemas
export * from './tagSchemas.js';
// Member schemas
export * from './memberSchemas.js';
// Newsletter schemas
export * from './newsletterSchemas.js';
// Tier (membership/product) schemas
export * from './tierSchemas.js';