Perplexity MCP Server

domain_filter

Add a domain to allow or block in search results (max 3 domains per type)

Input Schema

NameRequiredDescriptionDefault
actionYesWhether to allow or block this domain
domainYesDomain name without http:// or https:// (example: wikipedia.org)

Input Schema (JSON Schema)

{ "properties": { "action": { "description": "Whether to allow or block this domain", "enum": [ "allow", "block" ], "type": "string" }, "domain": { "description": "Domain name without http:// or https:// (example: wikipedia.org)", "type": "string" } }, "required": [ "domain", "action" ], "type": "object" }