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
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- tools/bookmarks.js:37-46 (handler)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}`); }