// Keep AI agents updated as listings change
async function syncListingsToWebMCP(idxFeed) {
const active = await idxFeed.getActive();
navigator.modelContext.provideContext({
key: "listing_inventory",
content: [{
type: "text",
text: `${active.length} active listings.`
}]
});
}