WordPress MCP Server

get-search-terms

Extract and analyze search terms used to find your WordPress site, providing insights into user behavior and search trends within a specified time period.

Instructions

View search terms used to find the site

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of search terms to return
passwordYesWordPress application password
periodNoTime period for stats
siteIdYesWordPress site ID
siteUrlYesWordPress site URL
usernameYesWordPress username

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "limit": { "description": "Maximum number of search terms to return", "maximum": 100, "minimum": 1, "type": "number" }, "password": { "description": "WordPress application password", "type": "string" }, "period": { "description": "Time period for stats", "enum": [ "day", "week", "month", "year" ], "type": "string" }, "siteId": { "description": "WordPress site ID", "type": "number" }, "siteUrl": { "description": "WordPress site URL", "format": "uri", "type": "string" }, "username": { "description": "WordPress username", "type": "string" } }, "required": [ "siteUrl", "username", "password", "siteId" ], "type": "object" }
ID: 4g84e42ylk