Keywords Everywhere MCP server

Provides access to the Keywords Everywhere API for SEO research and keyword analysis.
Back to servers
Setup instructions
Provider
hithereiamaliff
Release date
Jul 29, 2025
Language
Go
Stats
1 star

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).

Features

  • Keyword Data Analysis: Get search volume, CPC, and competition data for keywords
  • Related Keywords: Find related keywords and "People Also Search For" suggestions
  • Domain Analysis: Analyze what keywords a domain or URL ranks for
  • Traffic Metrics: Get traffic estimates and costs for domains and URLs
  • Backlink Analysis: Retrieve backlink data for domains and pages
  • Account Management: Check your Keywords Everywhere credit balance
  • Multi-Country Support: Analyze keywords across different countries and currencies

Installation & Setup

Prerequisites

Using NPX (Easiest Method)

The simplest way to use this MCP server is with npx:

npx mcp-keywords-everywhere

Global Installation

To install the server globally on your system:

npm install -g mcp-keywords-everywhere

Using with Smithery

You can also access this MCP server through Smithery by connecting to:

server.smithery.ai/@hithereiamaliff/mcp-keywords-everywhere

Configuration

For Claude Desktop

Add the following to your Claude Desktop configuration file:

Configuration File Location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %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"
      }
    }
  }
}

For Other MCP Clients

If you're using other MCP clients, run the server directly:

KEYWORDS_EVERYWHERE_API_KEY=your_api_key_here npx mcp-keywords-everywhere

API Key Setup

  1. Sign up at Keywords Everywhere
  2. Purchase credits for API access
  3. Get your API key from the dashboard
  4. Add the API key to your environment variables or MCP configuration

Available Tools

Account Management

  • get_credits - Check your account's credit balance
  • get_countries - Get list of supported countries
  • get_currencies - Get list of supported currencies

Keyword Research

  • get_keyword_data - Get volume, CPC, and competition data for keywords
  • get_related_keywords - Find related keywords based on a seed keyword
  • get_pasf_keywords - Get "People Also Search For" keywords

Domain Analysis

  • get_domain_keywords - Get keywords that a domain ranks for
  • get_url_keywords - Get keywords that a specific URL ranks for
  • get_domain_traffic - Get traffic metrics for a domain
  • get_url_traffic - Get traffic metrics for a URL

Backlink Analysis

  • get_domain_backlinks - Get backlinks for a domain
  • get_unique_domain_backlinks - Get unique domain backlinks
  • get_page_backlinks - Get backlinks for a specific page
  • get_unique_page_backlinks - Get unique backlinks for a page

Usage Examples

Basic Keyword Research

"Get keyword data for 'SEO tools' and 'keyword research' for Malaysia"

Domain Analysis

"What keywords does example.com rank for?"

Traffic Analysis

"Get traffic metrics for https://example.com"

Backlink Research

"Show me the top 20 backlinks for example.com"

Error Handling

The server includes comprehensive error handling:

  • Authentication errors: Clear messages for invalid API keys
  • Credit exhaustion: Helpful messages when credits run out
  • Rate limiting: Automatic retry with exponential backoff
  • Bad requests: Detailed error messages with suggestions

How to install this MCP server

For Claude Code

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.

For Cursor

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.

Adding an MCP server to Cursor globally

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"
            }
        }
    }
}

Adding an MCP server to a project

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.

How to use the MCP server

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.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.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

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later