Skip to main content
Glama
PCWProps

Pressable MCP Server

by PCWProps

pressable_get_bash_bookmark

Retrieve a specific Bash command bookmark by ID to access saved commands for managing WordPress sites through the Pressable API.

Instructions

Get a specific Bash command bookmark by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Implementation Reference

  • Implementation of the 'pressable_get_bash_bookmark' tool, which retrieves a specific Bash command bookmark by its ID.
    name: 'pressable_get_bash_bookmark',
    description: 'Get a specific Bash command bookmark by ID.',
    inputSchema: {
        type: 'object',
        properties: { id: { type: 'integer' } },
        required: ['id']
    },
    handler: async (args) => {
        return await api.get(`/bash_command_bookmarks/${args.id}`);
    }
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. While 'Get' implies a read-only operation, the description fails to specify error behaviors (e.g., invalid ID), return value structure, or whether this operation is idempotent/safe.

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

Conciseness5/5

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

The single sentence is appropriately sized with no redundant words. It front-loads the action ('Get') and essential qualifiers ('specific', 'by ID') immediately.

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

Completeness3/5

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

For a simple single-parameter retrieval tool, the description covers the core operation, but given zero schema descriptions, no output schema, and no annotations, it lacks necessary details about the return structure and error states that would make it complete.

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

Parameters3/5

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

Schema coverage is 0% (the 'id' parameter has no schema description). The description compensates minimally by indicating the parameter is the bookmark ID via 'by ID', but provides no guidance on valid ranges, where to obtain the ID, or the integer format beyond what the schema type declares.

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

Purpose5/5

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

The description uses a specific verb ('Get') and resource ('Bash command bookmark'), and the phrase 'by ID' clearly distinguishes this singular retrieval operation from sibling tools like 'pressable_list_bash_bookmarks' (plural listing) and 'pressable_create_bash_bookmark' (mutation).

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

Usage Guidelines3/5

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

The phrase 'by ID' implies this tool requires a specific identifier, distinguishing it from list operations, but it does not explicitly state when to choose this over 'list_bash_bookmarks' or mention that the ID must be obtained from a list operation first.

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