pressable_list_bash_bookmarks
Retrieve and search through saved Bash command bookmarks for managing WordPress sites via the Pressable API.
Instructions
Get a list of Bash command bookmarks for your account.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| search | No | Search term for name or command | |
| per_page | No | ||
| page | No |
Implementation Reference
- tools/bookmarks.js:15-17 (handler)The handler function that executes the 'pressable_list_bash_bookmarks' tool by making an API call.
handler: async (args) => { return await api.get('/bash_command_bookmarks', args); } - tools/bookmarks.js:7-14 (schema)The input schema defining the arguments for 'pressable_list_bash_bookmarks'.
inputSchema: { type: 'object', properties: { search: { type: 'string', description: 'Search term for name or command' }, per_page: { type: 'integer' }, page: { type: 'integer' } } }, - tools/bookmarks.js:4-18 (registration)The tool definition for 'pressable_list_bash_bookmarks' within the bookmarkTools array.
{ name: 'pressable_list_bash_bookmarks', description: 'Get a list of Bash command bookmarks for your account.', inputSchema: { type: 'object', properties: { search: { type: 'string', description: 'Search term for name or command' }, per_page: { type: 'integer' }, page: { type: 'integer' } } }, handler: async (args) => { return await api.get('/bash_command_bookmarks', args); } },