WordPress MCP Server

remove-referrer-spam

Remove a domain from the referrer spam list on your WordPress site programmatically. Requires site URL, credentials, site ID, and domain to streamline spam management.

Instructions

Unreport a referrer as spam

Input Schema

NameRequiredDescriptionDefault
domainYesDomain to remove from spam list
passwordYesWordPress application password
siteIdYesWordPress site ID
siteUrlYesWordPress site URL
usernameYesWordPress username

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "domain": { "description": "Domain to remove from spam list", "type": "string" }, "password": { "description": "WordPress application password", "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", "domain" ], "type": "object" }
ID: 4g84e42ylk