Skip to main content
Glama
PCWProps

Pressable MCP Server

by PCWProps

pressable_get_mu_plugin

Retrieve details for a specific must-use WordPress plugin by providing its ID, enabling management of site functionality through the Pressable API.

Instructions

Get details for a specific MU plugin.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Implementation Reference

  • The handler function for 'pressable_get_mu_plugin' that fetches plugin details from the API.
    handler: async (args) => {
        return await api.get(`/mu-plugins/${args.id}`);
    }
  • Input schema for 'pressable_get_mu_plugin' defining the required 'id' parameter.
    inputSchema: {
        type: 'object',
        properties: { id: { type: 'integer' } },
        required: ['id']
    },
  • Registration block for the 'pressable_get_mu_plugin' tool.
        {
            name: 'pressable_get_mu_plugin',
            description: 'Get details for a specific MU plugin.',
            inputSchema: {
                type: 'object',
                properties: { id: { type: 'integer' } },
                required: ['id']
            },
            handler: async (args) => {
                return await api.get(`/mu-plugins/${args.id}`);
            }
        }
    ];
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