/** * SEO Tools - Main Index * * This module exports the complete SEO toolkit for MCP WordPress. * It provides a unified interface for all SEO-related functionality * including content analysis, metadata generation, schema markup, * and site optimization. * * @since 2.7.0 */ import { SEOTools } from "./SEOTools.js"; export { SEOTools }; export default SEOTools; export type { SEOAnalysisResult, SEOMetadata, SchemaMarkup, SEOToolParams, BulkOperationResult, SiteAuditResult, SEORecommendation, SEOMetrics, InternalLinkSuggestion, AuditIssue, } from "../../types/seo.js"; export { seoToolDefinitions } from "./SEOToolDefinitions.js"; export { handleAnalyzeContent, handleGenerateMetadata, handleBulkUpdateMetadata, handleGenerateSchema, handleValidateSchema, handleSuggestInternalLinks, handlePerformSiteAudit, handleTrackSERPPositions, handleKeywordResearch, handleTestSEOIntegration, handleGetLiveSEOData, } from "./SEOHandlers.js"; //# sourceMappingURL=index.d.ts.map