bundlist
Manage personal lists with custom fields.
От сообщества: Добавлен пользователем или импортирован; проверьте владельца перед подключениемРаботаетБез входаГлобальныйБесплатноМожет изменять данные
Что умеет
- List Lists: Return all lists owned by the current user, with field and item counts.
- Get List: Get a single list by ID. Pass include_items=true to embed all items in the response. Use item_fields to project only specific field_values keys, reducing response size.
- Get Lists: Fetch multiple lists by ID in a single call. Silently skips IDs that are not found or not owned by the current user. Supports the same include_items and item_fields options as get_list.
Какие данные видит
Нужен ли аккаунт
Не нужен: сервер работает без входа
Manage personal lists with custom fields. Create and organize lists, add and update items with structured field data, and search your content — all without leaving your AI assistant.
Список инструментов сервера (12)
Технические названия из tools/list. Нужны только разработчикам.
| list_lists | Return all lists owned by the current user, with field and item counts. |
| get_list | Get a single list by ID. Pass include_items=true to embed all items in the response. Use item_fields to project only specific field_values keys, reducing response size. |
| get_lists | Fetch multiple lists by ID in a single call. Silently skips IDs that are not found or not owned by the current user. Supports the same include_items and item_fields options as get_list. |
| get_schema | Get the field schema for a list — the field names and IDs that define the columns. Call this before merge_list to get valid field names for field_values keys, or field IDs for targeted updates. |
| get_limits | Get the current user's service tier, per-tier limits (max lists, items per list, fields per list), and an upgrade_url. Share the upgrade_url with the user if they are at or near a limit so they can upgrade their plan. |
| export_data | Export all lists, field schemas, and items for the current user as structured JSON. |
| create_list | Create a new empty list. Subject to the user's list count limit — call get_limits to check remaining capacity. |
| rename_list | Rename an existing list. Has no effect on its fields or items. |
| merge_list | Non-destructively create or update fields and items in a list in a single call. Fields without an id are created by name (no-op if the name already exists). Fields with an id are renamed. Items without an id are created. Items with an id are updated — field_values are merged with existing values, not replaced. Entries that would exceed tier limits are skipped and reported in the response. Use delete_field or delete_item for removals. |
| delete_list | Permanently delete a list and all its fields and items. This action cannot be undone. |
| delete_field | Permanently delete a field from a list's schema. Existing field_values for that field are orphaned in items but not removed. This action cannot be undone. |
| delete_item | Permanently delete an item from a list. This action cannot be undone. |