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.
23 lines • 868 B
JavaScript
export const datalabsPrompts = [
{
name: 'dataforseo_labs_search_related_keywords_prompt',
title: 'DataForSEO Labs API Search Related Keywords Prompt',
description: 'Prompt for DataForSEO Labs API for search related keywords with specific criteria.',
params: {},
handler: async (params) => {
return {
description: `long tail prompts`,
messages: [
{
role: 'user',
content: {
type: 'text',
text: `Find long-tail keywords related to 'email marketing' with low competition and at least 1,000 monthly searches in the US.`
}
}
]
};
}
}
];
//# sourceMappingURL=labs.prompt.js.map