bundlist

Manage personal lists with custom fields.

Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeCan modify data

What it can do

  • 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.

What data it sees

Do you need an account

No: the server works without sign-in

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.

Server tool list (12)

Raw names from tools/list. Only developers need these.

list_listsReturn all lists owned by the current user, with field and item counts.
get_listGet 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_listsFetch 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_schemaGet 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_limitsGet 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_dataExport all lists, field schemas, and items for the current user as structured JSON.
create_listCreate a new empty list. Subject to the user's list count limit — call get_limits to check remaining capacity.
rename_listRename an existing list. Has no effect on its fields or items.
merge_listNon-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_listPermanently delete a list and all its fields and items. This action cannot be undone.
delete_fieldPermanently 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_itemPermanently delete an item from a list. This action cannot be undone.