The Keywords Everywhere MCP server provides access to the Keywords Everywhere API for SEO research and keyword analysis. This server enables AI assistants like Claude to perform keyword research, analyze search volumes, get competition data, and access various SEO metrics through the Model Context Protocol (MCP).
The simplest way to use this MCP server is with npx:
npx mcp-keywords-everywhere
To install the server globally on your system:
npm install -g mcp-keywords-everywhere
You can also access this MCP server through Smithery by connecting to:
server.smithery.ai/@hithereiamaliff/mcp-keywords-everywhere
Add the following to your Claude Desktop configuration file:
Configuration File Location:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
Configuration Content:
{
"mcpServers": {
"keywords-everywhere": {
"command": "npx",
"args": ["-y", "mcp-keywords-everywhere"],
"env": {
"KEYWORDS_EVERYWHERE_API_KEY": "your_api_key_here"
}
}
}
}
If you're using other MCP clients, run the server directly:
KEYWORDS_EVERYWHERE_API_KEY=your_api_key_here npx mcp-keywords-everywhere
get_credits
- Check your account's credit balanceget_countries
- Get list of supported countriesget_currencies
- Get list of supported currenciesget_keyword_data
- Get volume, CPC, and competition data for keywordsget_related_keywords
- Find related keywords based on a seed keywordget_pasf_keywords
- Get "People Also Search For" keywordsget_domain_keywords
- Get keywords that a domain ranks forget_url_keywords
- Get keywords that a specific URL ranks forget_domain_traffic
- Get traffic metrics for a domainget_url_traffic
- Get traffic metrics for a URLget_domain_backlinks
- Get backlinks for a domainget_unique_domain_backlinks
- Get unique domain backlinksget_page_backlinks
- Get backlinks for a specific pageget_unique_page_backlinks
- Get unique backlinks for a page"Get keyword data for 'SEO tools' and 'keyword research' for Malaysia"
"What keywords does example.com rank for?"
"Get traffic metrics for https://example.com"
"Show me the top 20 backlinks for example.com"
The server includes comprehensive error handling:
To add this MCP server to Claude Code, run this command in your terminal:
claude mcp add-json "keywords-everywhere" '{"command":"npx","args":["-y","mcp-keywords-everywhere"],"env":{"KEYWORDS_EVERYWHERE_API_KEY":"your_api_key_here"}}'
See the official Claude Code MCP documentation for more details.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"keywords-everywhere": {
"command": "npx",
"args": [
"-y",
"mcp-keywords-everywhere"
],
"env": {
"KEYWORDS_EVERYWHERE_API_KEY": "your_api_key_here"
}
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
2. Add this to your configuration file:
{
"mcpServers": {
"keywords-everywhere": {
"command": "npx",
"args": [
"-y",
"mcp-keywords-everywhere"
],
"env": {
"KEYWORDS_EVERYWHERE_API_KEY": "your_api_key_here"
}
}
}
}
3. Restart Claude Desktop for the changes to take effect