We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/saurabhsharma2u/search-console-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { getBingClient, BingLinkCount } from '../client.js';
/**
* Get link counts for a site.
*/
export async function getLinkCounts(siteUrl: string): Promise<BingLinkCount[]> {
const client = await getBingClient(siteUrl);
return client.getLinkCounts(siteUrl);
}