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, BingKeywordStats, BingRelatedKeyword } from '../client.js';
/**
* Get historical stats for a keyword.
*/
export async function getKeywordStats(q: string, country?: string, language?: string): Promise<BingKeywordStats[]> {
const client = await getBingClient();
return client.getKeywordStats(q, country, language);
}
/**
* Get related keywords and search volume.
*/
export async function getRelatedKeywords(q: string, country?: string, language?: string): Promise<BingRelatedKeyword[]> {
const client = await getBingClient();
return client.getRelatedKeywords(q, country, language);
}