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 GetUrlOverviewWorldwide extends BaseTool {
FIELDS = ['keywords', 'traffic', 'price'];
registerTool(server) {
server.registerTool(this.toolName('getUrlOverviewWorldwide'), {
title: 'URL Overview Worldwide',
description: 'Data Tool: Retrieves an aggregated worldwide overview of organic and paid traffic metrics for a specific URL.',
inputSchema: {
url: z
.string()
.url()
.describe('The full URL to analyze (including protocol).'),
fields: z
.string()
.optional()
.refine((val) => this.isValidCommaSeparatedList(this.FIELDS, val), {
message: 'fields must be a comma-separated list of supported metrics',
})
.describe('A comma-separated list of metrics to include in the response. Accepted values: `keywords`, `traffic`, `price`.'),
},
}, async (params) => this.makeGetRequest('/v1/domain/overview/worldwide/url', params));
}
}
//# sourceMappingURL=domain-overview-worldwide-url.js.map