Skip to main content
Glama
PCWProps

Pressable MCP Server

by PCWProps

pressable_get_sftp_users

Retrieve SFTP user accounts for a WordPress site to manage file access and permissions through the Pressable API.

Instructions

Get a list of SFTP users for a specific site.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Implementation Reference

  • The handler for the 'pressable_get_sftp_users' tool, which makes an API request to fetch SFTP users for a site.
    handler: async (args) => {
        return await api.get(`/sites/${args.id}/sftp-users`);
    }
  • tools/server.js:4-15 (registration)
    The registration of the 'pressable_get_sftp_users' tool definition, including its schema and handler.
    {
        name: 'pressable_get_sftp_users',
        description: 'Get a list of SFTP users for a specific site.',
        inputSchema: {
            type: 'object',
            properties: { id: { type: 'string' } },
            required: ['id']
        },
        handler: async (args) => {
            return await api.get(`/sites/${args.id}/sftp-users`);
        }
    },
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