We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TeamDay-AI/se-ranking-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from 'zod';
import { BaseTool } from '../../base-tool.js';
export class GetCumulativeBacklinksHistory extends BaseTool {
registerTool(server) {
server.registerTool(this.toolName('getCumulativeBacklinksHistory'), {
title: 'Get Cumulative Backlinks History',
description: 'Data Tool: Returns a number of live backlinks for every day within the specified date range for the specified target.',
inputSchema: {
target: z.string().describe('Aim of the request: only full page URL is supported.'),
mode: z.enum(['domain', 'host', 'url']).optional().default('host'),
date_from: z
.string()
.optional()
.describe('Start date in YYYY-MM-DD format (inclusive range).'),
date_to: z
.string()
.optional()
.describe('End date in YYYY-MM-DD format (inclusive range).'),
},
}, async (params) => this.makeGetRequest('/v1/backlinks/history/cumulative', params));
}
}
//# sourceMappingURL=backlinks-history-cumulative.js.map