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
serp-get-tasks.js•497 B
import { BaseTool } from '../../base-tool.js';
export class GetSerpTasks extends BaseTool {
registerTool(server) {
server.registerTool(this.toolName('getSerpTasks'), {
title: 'List SERP tasks',
description: 'Data Tool: Retrieves a list of all SERP tasks added to the queue in the last 24 hours.',
inputSchema: {},
}, async (params) => this.makeGetRequest('/v1/serp/classic/tasks', params));
}
}
//# sourceMappingURL=serp-get-tasks.js.map