Skip to main content
Glama

seo_keyword_difficulty

Analyze keyword difficulty for SEO strategies using the ReviewWebsite API. Input a keyword and optional country code to evaluate competition and optimize search rankings.

Instructions

Get keyword difficulty for a keyword using ReviewWeb.site API.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
api_keyNoYour ReviewWebsite API key
countryNoCountry code (default: us)
keywordYesThe keyword to check difficulty for

Implementation Reference

  • MCP tool handler function that executes the logic for 'seo_keyword_difficulty' by calling the reviewWebsiteController.getKeywordDifficulty method.
    async function handleGetKeywordDifficulty(
    	args: SeoKeywordDifficultyToolArgsType,
    ) {
    	const methodLogger = Logger.forContext(
    		'tools/reviewwebsite.tool.ts',
    		'handleGetKeywordDifficulty',
    	);
    	methodLogger.debug(`Getting keyword difficulty:`, {
    		...args,
    		api_key: args.api_key ? '[REDACTED]' : undefined,
    	});
    
    	try {
    		const result = await reviewWebsiteController.getKeywordDifficulty(
    			args.keyword,
    			{
    				country: args.country,
    			},
    			{
    				api_key: args.api_key,
    			},
    		);
    
    		return {
    			content: [
    				{
    					type: 'text' as const,
    					text: result.content,
    				},
    			],
    		};
    	} catch (error) {
    		methodLogger.error(`Error getting keyword difficulty`, error);
    		return formatErrorForMcpTool(error);
    	}
    }
  • Registration of the 'seo_keyword_difficulty' tool with the MCP server, linking name, description, input schema, and handler function.
    server.tool(
    	'seo_keyword_difficulty',
    	`Get keyword difficulty for a keyword using ReviewWeb.site API.`,
    	SeoKeywordDifficultyToolArgs.shape,
    	handleGetKeywordDifficulty,
    );
  • Zod schema defining the input arguments for the 'seo_keyword_difficulty' tool.
    export const SeoKeywordDifficultyToolArgs = z.object({
    	keyword: z.string().describe('The keyword to check difficulty for'),
    	country: z.string().optional().describe('Country code (default: us)'),
    	api_key: z.string().optional().describe('Your ReviewWebsite API key'),
    });

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/mrgoonie/reviewwebsite-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server