dataforseo-mcp-server
Version:
A Model Context Protocol (MCP) server for the DataForSEO API, enabling modular and extensible integration of DataForSEO endpoints with support for both HTTP and SSE transports.
26 lines • 878 B
JavaScript
import { z } from 'zod';
export const contentAnalysisPrompts = [
{
name: 'sites_content_gap',
title: 'Sites Content Gap',
params: {
url1: z.string().describe('The first URL to analyze'),
url2: z.string().describe('The second URL to analyze'),
topic: z.string().describe('The topic to focus on'),
},
handler: async (params) => {
return {
messages: [
{
role: 'user',
content: {
type: 'text',
text: `Identify content gaps between ${params.url1} and ${params.url2} for the topic '${params.topic}'`
}
}
]
};
}
},
];
//# sourceMappingURL=content-analysis.prompt.js.map