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.

55 lines (54 loc) 2.27 kB
import { z } from 'zod'; import { BaseTool } from '../../base.tool.js'; export class SerpYoutubeVideoCommentsLiveAdvancedTool extends BaseTool { constructor(dataForSEOClient) { super(dataForSEOClient); } getName() { return 'serp_youtube_video_comments_live_advanced'; } getDescription() { return 'provides data on the video comments you specify'; } getParams() { return { video_id: z.string().describe("ID of the video"), location_name: z.string().describe(`full name of the location required field Location format - hierarchical, comma-separated (from most specific to least) Can be one of: 1. Country only: "United States" 2. Region,Country: "California,United States" 3. City,Region,Country: "San Francisco,California,United States"`), language_code: z.string().describe("search engine language code (e.g., 'en')"), device: z.string().default('desktop').optional().describe(`device type optional field can take the values:desktop, mobile default value: desktop`), os: z.string().default('windows').optional().describe(`device operating system optional field if you specify desktop in the device field, choose from the following values: windows, macos default value: windows if you specify mobile in the device field, choose from the following values: android, ios default value: android`), depth: z.number().default(20).optional().describe(`parsing depth, number of results in SERP, max value: 700`) }; } async handle(params) { try { console.error(JSON.stringify(params, null, 2)); const response = await this.dataForSEOClient.makeRequest(`/v3/serp/youtube/video_comments/live/advanced`, 'POST', [{ video_id: params.video_id, location_name: params.location_name, language_code: params.language_code, device: params.device, os: params.os, depth: params.depth, }]); return this.validateAndFormatResponse(response); } catch (error) { return this.formatErrorResponse(error); } } }