Skip to main content
Glama
PCWProps

Pressable MCP Server

by PCWProps

pressable_list_collaborators

View collaborators for Pressable WordPress accounts or sites to manage team access and permissions.

Instructions

List all collaborators for an account or specific site.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_idNoOptional site ID to filter by

Implementation Reference

  • The handler function for pressable_list_collaborators tool which fetches collaborators from the API.
    handler: async (args) => {
        const path = args.site_id ? `/sites/${args.site_id}/collaborators` : '/collaborators';
        return await api.get(path);
    }
  • The registration block for the pressable_list_collaborators tool.
    {
        name: 'pressable_list_collaborators',
        description: 'List all collaborators for an account or specific site.',
        inputSchema: {
            type: 'object',
            properties: {
                site_id: { type: 'string', description: 'Optional site ID to filter by' }
            }
        },
        handler: async (args) => {
            const path = args.site_id ? `/sites/${args.site_id}/collaborators` : '/collaborators';
            return await api.get(path);
        }
    },
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