Skip to main content
Glama

DataForSEO MCP Server

content-analysis-api.module.ts918 B
import { BaseModule, ToolDefinition } from '../base.module.js'; import { ContentAnalysisPhraseTrendsTool } from './tools/content-analysis-phrase-trends.js'; import { ContentAnalysisSearchTool } from './tools/content-analysis-search.tool.js'; import { ContentAnalysisSummaryTool } from './tools/content-analysis-summary.js'; export class ContentAnalysisApiModule extends BaseModule { getTools(): Record<string, ToolDefinition> { const tools = [ new ContentAnalysisSearchTool(this.dataForSEOClient), new ContentAnalysisSummaryTool(this.dataForSEOClient), new ContentAnalysisPhraseTrendsTool(this.dataForSEOClient), // Add more tools here ]; return tools.reduce((acc, tool) => ({ ...acc, [tool.getName()]: { description: tool.getDescription(), params: tool.getParams(), handler: (params: any) => tool.handle(params), }, }), {}); } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/ravinwebsurgeon/seo-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server