library_list
Retrieve all content libraries and their IDs to organize social media content for scheduling and management.
Instructions
List all content libraries with their IDs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:99-110 (handler)Registration and handler logic for the 'library_list' tool, which calls the internal '/api/library_list' endpoint.
server.tool( "library_list", "List all content libraries with their IDs", {}, async () => { try { return toolResult(await callAPI("/api/library_list")); } catch (e) { return toolResult({ error: String(e) }, true); } } );