UNPKG

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.

25 lines 827 B
import { z } from 'zod'; export const keywordsDataPrompts = [ { name: 'keywords_trends', title: 'Search Keywords Trends', params: { keyword: z.string().describe('The eco-friendly keyword to search for'), location: z.string().describe('The location to search in') }, handler: async (params) => { return { messages: [ { role: 'user', content: { type: 'text', text: `What keywords related to '${params.keyword}' are trending this month in ${params.location}?` } } ] }; } }, ]; //# sourceMappingURL=keywords-data.prompts.js.map