by data-skunks
Provides keyword research tools such as People Also Ask, Google Autocomplete, Reddit and Quora questions, and semantic keyword extraction via a Model Context Protocol server.
Provides a Model Context Protocol (MCP) server that surfaces keyword‑research data from KeywordsPeopleUse, enabling clients like Claude Desktop or Cursor to fetch People Also Ask questions, Google autocomplete suggestions, Reddit & Quora queries, and semantically related keywords.
git clone https://github.com/data-skunks/kpu-mcp.git
cd kpu-mcp
.env
file at the project root:
KPU_API_KEY=sk_01234567890123456789012345678901
npm install
node index.js
Q: Do I need a KeywordsPeopleUse account? A: Yes, an API key from the KeywordsPeopleUse Standard plan or higher is required.
Q: Can I run the server remotely?
A: Absolutely. Deploy the Node.js app on any server, expose the /sse
endpoint, and configure the client to connect via mcp-remote
.
Q: What Node.js version is required?
A: Any recent LTS version (e.g., 18.x or later) works; verify with node --version
.
Q: How do I integrate with Claude Desktop?
A: Add the MCP server configuration to claude_desktop_config.json
as shown in the README, pointing to the absolute path of index.js
.
Q: Is there a Docker image? A: The repository does not include an official Dockerfile, but you can containerize it using a standard Node.js base image.
A Model Context Protocol (MCP) server implementation that integrates with KeywordsPeopleUse for keyword research features.
Make sure you have Node.js and npm installed on your computer.
node --version
npm --version
If not, go to Node.js official website to download and install it.
You can connect to your remote MCP server from local MCP clients, by using the mcp-remote proxy.
To connect to your MCP server from Claude Desktop, follow Anthropic's Quickstart and within Claude Desktop go to Settings > Developer > Edit Config.
Update with this configuration (replace YOUR_API_KEY with your API key):
{
"mcpServers": {
"keywordspeopleuse": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp-keywordspeopleuse.com/sse",
"--header",
"Authorization:YOUR_API_KEY"
]
}
}
}
Restart Claude and you should see the tools become available.
git clone https://github.com/data-skunks/kpu-mcp.git
MCP Server integration is available on KeywordsPeopleUse Standard plan and above. Go to KeywordsPeopleUse Settings to get the API key. Press Show key
, copy the key, and paste it inside the .env
file, so the file looks like this:
KPU_API_KEY=sk_01234567890123456789012345678901
npm install
To configure Firecrawl MCP in Cursor v0.45.6
node /ABSOLUTE/PATH/TO/PARENT/FOLDER/kpu-mcp/index.js
To configure Firecrawl MCP in Cursor v0.48.6
On MacOS/Linux
{
"mcpServers": {
"keywordspeopleuse": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/PARENT/FOLDER/kpu-mcp/index.js"]
}
}
}
On Windows
{
"mcpServers": {
"keywordspeopleuse": {
"command": "node",
"args": ["C:/PATH/TO/PARENT/FOLDER/kpu-mcp/index.js"]
}
}
}
Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"keywordspeopleuse": {
"command": "node",
"args": ["/ABSOLUTE/PATH/TO/PARENT/FOLDER/kpu-mcp/index.js"]
}
}
}
{
"mcpServers": {
"keywordspeopleuse": {
"command": "node",
"args": ["C:/PATH/TO/PARENT/FOLDER/kpu-mcp/index.js"]
}
}
}
Please log in to share your review and rating for this MCP.
Explore related MCPs that share similar capabilities and solve comparable challenges
by exa-labs
Provides real-time web search capabilities to AI assistants via a Model Context Protocol server, enabling safe and controlled access to the Exa AI Search API.
by elastic
Enables natural‑language interaction with Elasticsearch indices via the Model Context Protocol, exposing tools for listing indices, fetching mappings, performing searches, running ES|QL queries, and retrieving shard information.
by graphlit
Enables integration between MCP clients and the Graphlit platform, providing ingestion, extraction, retrieval, and RAG capabilities across a wide range of data sources and connectors.
by mamertofabian
Fast cross‑platform file searching leveraging the Everything SDK on Windows, Spotlight on macOS, and locate/plocate on Linux.
by cr7258
Provides Elasticsearch and OpenSearch interaction via Model Context Protocol, enabling document search, index management, cluster monitoring, and alias operations.
by liuyoshio
Provides natural‑language search and recommendation for Model Context Protocol servers, delivering rich metadata and real‑time updates.
by ihor-sokoliuk
Provides web search capabilities via the SearXNG API, exposing them through an MCP server for seamless integration with AI agents and tools.
by fatwang2
Provides web and news search, URL crawling, sitemap extraction, deep‑reasoning, and trending topic retrieval via Search1API, exposed as an MCP server for integration with AI clients.
by cnych
Provides SEO data retrieval via Ahrefs, exposing MCP tools for backlink analysis, keyword generation, traffic estimation, and keyword difficulty, with automated CAPTCHA solving and response caching.