Skip to main content
Glama
PCWProps

Pressable MCP Server

by PCWProps

pressable_add_site_domain

Add a custom domain to a WordPress site managed through Pressable, enabling you to connect your own web address for public access.

Instructions

Add a domain to a site.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
domainYes

Implementation Reference

  • The handler function for the pressable_add_site_domain tool, which performs a POST request to add a domain to a site.
    name: 'pressable_add_site_domain',
    description: 'Add a domain to a site.',
    inputSchema: {
        type: 'object',
        properties: {
            id: { type: 'string' },
            domain: { type: 'string' }
        },
        required: ['id', 'domain']
    },
    handler: async (args) => {
        return await api.post(`/sites/${args.id}/domains`, { domain: args.domain });
    }
Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/PCWProps/pressable-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server