Skip to main content
Glama
PCWProps

Pressable MCP Server

by PCWProps

pressable_reset_sftp_user_password

Reset the password for a specific SFTP user on a WordPress site to restore access or enhance security.

Instructions

Reset the password for a specific SFTP user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
site_idYes
usernameYes

Implementation Reference

  • The handler function that executes the POST request to reset the SFTP user password.
    handler: async (args) => {
        return await api.post(`/sites/${args.site_id}/sftp-users/${args.username}/reset-password`);
    }
  • tools/server.js:44-53 (registration)
    The registration and input schema definition for the pressable_reset_sftp_user_password tool.
    name: 'pressable_reset_sftp_user_password',
    description: 'Reset the password for a specific SFTP user.',
    inputSchema: {
        type: 'object',
        properties: {
            site_id: { type: 'string' },
            username: { type: 'string' }
        },
        required: ['site_id', 'username']
    },
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden but fails to disclose critical behavioral traits: whether the old password is immediately invalidated, whether a new random password is generated, what the tool returns (likely the new password), or security implications. 'Reset' implies mutation but specifics are absent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single sentence of seven words is efficient and front-loaded with the action. No redundancy, though extreme brevity contributes to information gaps in other dimensions.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a security-sensitive password reset operation with no annotations, no output schema, and 0% parameter documentation, the description is inadequate. It should explain the return value (critical for a reset operation), parameter sources, and side effects, but provides only the basic action statement.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0% (neither site_id nor username have descriptions). The description mentions 'specific SFTP user' which loosely implies the username parameter, but completely fails to explain site_id, expected formats, or where to obtain these values (e.g., from `pressable_get_sftp_users`).

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb (reset), resource (password), and target (specific SFTP user). It distinguishes from sibling `pressable_reset_wp_admin_password` by specifying 'SFTP user'. However, it doesn't clarify what 'reset' means (random generation vs. custom setting).

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides no guidance on when to use this tool versus alternatives, prerequisites (e.g., needing to obtain valid site_id/username first), or when-not-use scenarios. No mention of required permissions or verification steps.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

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