{"mcpVersion":"2025-03-26","name":"MONO Social","description":"MONO Social — directory of places, events, and listings.","endpoint":"https://mono.juno.ventures/mcp","transport":"streamable-http","tools":[{"name":"get_site_info","description":"Returns basic information about this neighborhood directory: name, locale, domain, description, canonical URLs for key sections, plus the current LOCAL TIME and CURRENT WEATHER at the neighborhood (temperature, condition). Use this for any \"what time is it there\" or \"what's the weather like\" context.","inputSchema":{"type":"object","properties":{},"required":[]}},{"name":"list_categories","description":"Returns the full category taxonomy of this directory site: top-level groups with their subcategories, localized labels, schema.org types, and live place counts.","inputSchema":{"type":"object","properties":{},"required":[]}},{"name":"search_places","description":"Search for places (restaurants, cafes, shops, etc.) in this neighborhood. The `q` match is accent-insensitive and typo-tolerant (\"acai\" finds \"Açaí\", \"restaurnt\" finds \"Restaurante\"), ranked by relevance. Optionally also filter by category label or neighborhood. Returns structured opening hours (Google Maps periods format: day 0=Sun–6=Sat, time \"HHMM\") when available — use to determine if a place is currently open.","inputSchema":{"type":"object","properties":{"q":{"type":"string","description":"Free-text term matched against place name and address — accent-insensitive and typo-tolerant."},"category":{"type":"string","description":"Filter by category label (e.g. \"Café\"). Case-insensitive substring match."},"neighborhood":{"type":"string","description":"Filter by neighborhood name. Case-insensitive substring match."},"limit":{"type":"number","description":"Max results to return (default 20, max 100)."}},"required":[]}},{"name":"get_place","description":"Get full details for a specific place by its URL slug, including opening hours, ratings, address, and neighborhood.","inputSchema":{"type":"object","properties":{"slug":{"type":"string","description":"URL slug of the place, e.g. \"cafe-example\"."}},"required":["slug"]}},{"name":"list_events","description":"List upcoming events in this neighborhood with date, venue, price, and URL. Events within the next 7 days include a weatherForecast (condition + min/max temperature) for the event day — use it to tell users e.g. \"the event is at X and it will be raining\". Pass `filter` to narrow by time or price; `filter: \"agora\"` answers \"what can I go to right now\" and is resolved live on every call, which no cached page can do.","inputSchema":{"type":"object","properties":{"limit":{"type":"number","description":"Max events to return (default 20, max 50)."},"upcoming_only":{"type":"boolean","description":"Only return upcoming or in-progress events (default true)."},"filter":{"type":"string","enum":["agora","hoje","amanha","fim-de-semana","gratis"],"description":"Narrow the list: \"agora\" = on stage at this exact moment (season runs and day-granular sources are excluded, because their stored window says nothing about whether a session is on right now); \"hoje\"/\"amanha\"/\"fim-de-semana\" = running on those days, including multi-day runs; \"gratis\" = free to attend, including externally-ticketed events priced at 0."}},"required":[]}},{"name":"list_guides","description":"List curated editorial guides (\"best of\" lists) published by this site — ranked places with editorial notes. The best source for \"best X in this neighborhood\" questions.","inputSchema":{"type":"object","properties":{"limit":{"type":"number","description":"Max guides to return (default 20, max 50)."}},"required":[]}},{"name":"list_booking_services","description":"List a venue's services — what it offers, with price and duration. Pass `place_slug` (from search_places) to list the services of a specific VENUE — a salon, clinic or studio listed in this directory; that is what you want in almost every case, and it is the only form whose serviceId works with create_booking. Omitting `place_slug` lists the directory site's own services instead, which most sites do not have. Returns name, description, price, duration in minutes, and `bookableViaMcp`. Services are listed for EVERY venue, including those with no online booking system — check `bookableViaMcp`: when it is false, `id` is null and you cannot book through create_booking, so point the user at `bookingUrl` or the venue's page instead.","inputSchema":{"type":"object","properties":{"place_slug":{"type":"string","description":"Venue place slug from search_places. Strongly recommended — without it you get the directory's own services, not a venue's."}},"required":[]}},{"name":"get_availability","description":"Get available time slots for a bookable service on a given date (Wix Bookings). Pass the serviceId from list_booking_services and a date in YYYY-MM-DD. Pass the same `place_slug` you used there — slot times are returned in the VENUE's timezone, which is not necessarily the directory's.","inputSchema":{"type":"object","properties":{"serviceId":{"type":"string","description":"Service ID from list_booking_services."},"date":{"type":"string","description":"Date in YYYY-MM-DD format (e.g. \"2026-06-25\")."},"place_slug":{"type":"string","description":"Venue place slug — use the same one passed to list_booking_services."}},"required":["serviceId","date"]}},{"name":"create_booking","description":"Book an appointment slot at a venue (Wix Bookings). NOTHING IS BOOKED UNTIL THE CUSTOMER PAYS: this returns a checkout URL, and the booking stays off the venue's calendar until a human opens that URL and completes payment on the venue's own site. Tell the user they must open the link. Call get_availability immediately before this — the slot is re-validated server-side and a taken slot is rejected. The contact email is NOT verified at this step; the checkout is what confirms it.","inputSchema":{"type":"object","properties":{"place_slug":{"type":"string","description":"Venue place slug from search_places."},"serviceId":{"type":"string","description":"Service ID from list_booking_services (called with the same place_slug)."},"startDate":{"type":"string","description":"Slot start as an ISO instant, exactly as returned by get_availability."},"endDate":{"type":"string","description":"Slot end as an ISO instant, exactly as returned by get_availability."},"resourceId":{"type":"string","description":"Optional staff/resource ID from the slot, when the user picked a specific professional."},"contact":{"type":"object","description":"Who the booking is for. All three are required by the venue to confirm or reschedule.","properties":{"name":{"type":"string","description":"Full name."},"email":{"type":"string","description":"Email address."},"phone":{"type":"string","description":"Phone number, at least 10 digits. Any formatting is accepted."}},"required":["name","email","phone"]}},"required":["place_slug","serviceId","startDate","endDate","contact"]}},{"name":"reserve_event_tickets","description":"Hold tickets for an event sold through this site (Wix Events) and return a checkout URL. THE HOLD IS TEMPORARY AND NOTHING IS PAID: the tickets are not the user's until a human opens the URL and completes checkout, and the hold expires on its own if they don't. Max 10 tickets and 10 ticket types per reservation. Only works for events this site sells directly — for events sold elsewhere (Sympla, Ingresse, Sesc), use the event's own ticketUrl instead.","inputSchema":{"type":"object","properties":{"event_slug":{"type":"string","description":"Event slug from list_events."},"tickets":{"type":"array","description":"Ticket types and quantities to hold.","items":{"type":"object","properties":{"ticketDefinitionId":{"type":"string","description":"Ticket type ID from get_event_tickets."},"quantity":{"type":"number","description":"How many of this type (at least 1)."}},"required":["ticketDefinitionId","quantity"]}}},"required":["event_slug","tickets"]}},{"name":"request_reservation","description":"Request a table at a restaurant. THE RESTAURANT IS NOT NOTIFIED YET: the request is held and a confirmation email is sent to the address you provide, and only when that person clicks the link does the restaurant receive it. Tell the user to check their inbox — the link expires in 24 hours. Use a real address belonging to the person you are acting for; the confirmation link is deliberately not returned to you. This is a request, not a confirmed booking: the restaurant confirms out of band.","inputSchema":{"type":"object","properties":{"place_slug":{"type":"string","description":"Restaurant place slug from search_places."},"name":{"type":"string","description":"Name the table is under."},"email":{"type":"string","description":"The guest's own email — the confirmation link is sent here."},"phone":{"type":"string","description":"Optional phone number for the restaurant to reach the guest."},"partySize":{"type":"number","description":"Number of people (1–30)."},"requestedAt":{"type":"string","description":"Desired date and time as an ISO instant. Must be in the future."},"message":{"type":"string","description":"Optional note (occasion, dietary needs, seating preference)."}},"required":["place_slug","name","email","partySize","requestedAt"]}},{"name":"rsvp_event","description":"RSVP to a free event on this site (Wix Events). NOBODY IS ON THE GUEST LIST YET: a confirmation email goes to the address you provide, and the RSVP is only submitted when that person clicks the link (expires in 24 hours). Tell the user to check their inbox. Use a real address belonging to the person you are acting for — the confirmation link is deliberately not returned to you.","inputSchema":{"type":"object","properties":{"event_slug":{"type":"string","description":"Event slug from list_events."},"firstName":{"type":"string","description":"Guest first name."},"lastName":{"type":"string","description":"Guest last name."},"email":{"type":"string","description":"The guest's own email — the confirmation link is sent here."}},"required":["event_slug","firstName","lastName","email"]}},{"name":"get_event_tickets","description":"Get ticket types and prices for a specific event (Wix Events). Pass the event slug from list_events. Returns ticket names, prices, sale status, and how many are left.","inputSchema":{"type":"object","properties":{"event_slug":{"type":"string","description":"Event slug from list_events."}},"required":["event_slug"]}},{"name":"list_products","description":"List products in this site's store (Wix Stores). Returns name, price, stock status, and product type.","inputSchema":{"type":"object","properties":{"q":{"type":"string","description":"Optional search term matched against product name."},"limit":{"type":"number","description":"Max products to return (default 20, max 100)."}},"required":[]}},{"name":"create_checkout","description":"Create a direct checkout URL for one or more store products (Wix Stores). The user clicks the URL to complete payment on the site — no login required on the AI agent side.","inputSchema":{"type":"object","properties":{"items":{"type":"array","description":"Products to add to cart.","items":{"type":"object","properties":{"productId":{"type":"string","description":"Product ID from list_products."},"quantity":{"type":"number","description":"Quantity (default 1)."}},"required":["productId"]}}},"required":["items"]}},{"name":"get_restaurant_menus","description":"Get the food menu for a specific restaurant on this site. Returns menus with their sections, dishes, descriptions, prices, and dietary labels (vegan, gluten-free, etc). Use search_places or list_categories first to find the restaurant's place_slug.","inputSchema":{"type":"object","properties":{"place_slug":{"type":"string","description":"The slug of the restaurant, e.g. \"bar-do-ze\" (from search_places or a place URL)."}},"required":["place_slug"]}},{"name":"search_dishes","description":"Find which restaurants serve a dish in this neighborhood. Searches every menu item across all restaurants on the site, grouped by dish — e.g. query \"feijoada\" returns each restaurant serving it with price, description, dietary labels, and the place URL. Omit the query to list the most-served dishes. Use this for any \"where can I eat X\" question.","inputSchema":{"type":"object","properties":{"query":{"type":"string","description":"Dish name or part of it, e.g. \"feijoada\", \"pizza margherita\". Omit to list top dishes."},"limit":{"type":"number","description":"Max dishes to return (default 20, max 50)."}},"required":[]}},{"name":"list_pricing_plans","description":"List membership or subscription plans offered by this site (Wix Pricing Plans). Returns plan name, price, billing cycle, perks, and a direct checkout URL.","inputSchema":{"type":"object","properties":{},"required":[]}},{"name":"get_reviews","description":"Get published reviews for this site (Wix Reviews). Returns reviewer name, rating, title, and content.","inputSchema":{"type":"object","properties":{"limit":{"type":"number","description":"Max reviews to return (default 10, max 50)."}},"required":[]}},{"name":"list_blog_posts","description":"List recent published blog posts for this site (Wix Blog). Returns title, excerpt, author, published date, reading time, categories, and the post URL.","inputSchema":{"type":"object","properties":{"limit":{"type":"number","description":"Max posts to return (default 10, max 50)."},"category":{"type":"string","description":"Filter by category label. Case-insensitive substring match."}},"required":[]}},{"name":"list_faqs","description":"Get all FAQ questions and answers for this site (Wix FAQ). Grouped by category. Use this to answer common questions about the site — opening hours, parking, policies, etc.","inputSchema":{"type":"object","properties":{},"required":[]}},{"name":"list_forms","description":"List available contact/signup forms on this site (Wix Forms). Returns form name, ID, and field definitions (label, type, required). Use before submit_form to discover which fields to fill.","inputSchema":{"type":"object","properties":{},"required":[]}},{"name":"submit_form","description":"Submit a form on behalf of the user (Wix Forms). Call list_forms first to get the formId and field keys. Returns a submissionId on success.","inputSchema":{"type":"object","properties":{"formId":{"type":"string","description":"Form ID from list_forms."},"fields":{"type":"object","description":"Key-value pairs matching the field keys from list_forms. Example: { \"field_1\": \"João\", \"field_2\": \"joao@email.com\" }","additionalProperties":{"type":"string"}}},"required":["formId","fields"]}},{"name":"get_loyalty_info","description":"Get the loyalty/rewards program details for this site (Wix Loyalty). Returns program name, points currency name, and tier structure with required points per tier.","inputSchema":{"type":"object","properties":{},"required":[]}},{"name":"list_offers","description":"List active promotions and deals available in this neighborhood directory. Returns discount label, promo code (if any), CTA link, validity window, and which business/place it belongs to. FLASH offers have a countdown deadline.","inputSchema":{"type":"object","properties":{"kind":{"type":"string","enum":["STANDARD","FLASH"],"description":"Filter by offer kind. FLASH = time-limited flash sale with countdown. Omit to return all active offers."},"limit":{"type":"number","description":"Max offers to return (default 20, max 60)."}},"required":[]}},{"name":"list_profiles","description":"List solo service-provider profiles on this site — businesses without a fixed physical location (e.g. dog walkers, tutors, personal trainers). Returns name, profile URL, category, and any available metadata (age, height, etc.).","inputSchema":{"type":"object","properties":{"limit":{"type":"number","description":"Max profiles to return (default 50)."}},"required":[]}},{"name":"list_movies","description":"List movies available in this neighborhood (only on sites with movies_enabled). Returns now-showing films (with actual showtimes at local cinemas), coming-soon films, and streaming availability. Includes title, genres, TMDB rating, runtime, and detail URL.","inputSchema":{"type":"object","properties":{"status":{"type":"string","enum":["now_showing","coming_soon","streaming","all"],"description":"Filter by status. \"now_showing\" = films with upcoming showtimes at local cinemas. \"coming_soon\" = unreleased or not yet playing locally. \"streaming\" = available on streaming services in Brazil. \"all\" = full catalog (default)."},"limit":{"type":"number","description":"Max movies to return (default 20, max 100)."}},"required":[]}},{"name":"get_showtimes","description":"Get showtimes for a specific movie at cinemas in this neighborhood, for a given date. Returns each cinema with session times, format (e.g. \"Laser\", \"3D\"), and language (Dublado/Legendado). Requires movies_enabled on this site.","inputSchema":{"type":"object","properties":{"movie_slug":{"type":"string","description":"Movie slug from list_movies (e.g. \"o-corvo-1016084\")."},"date":{"type":"string","description":"Date in YYYY-MM-DD format. Defaults to today (BRT)."}},"required":["movie_slug"]}}],"toolNames":["get_site_info","list_categories","search_places","get_place","list_events","list_guides","list_booking_services","get_availability","create_booking","reserve_event_tickets","request_reservation","rsvp_event","get_event_tickets","list_products","create_checkout","get_restaurant_menus","search_dishes","list_pricing_plans","get_reviews","list_blog_posts","list_faqs","list_forms","submit_form","get_loyalty_info","list_offers","list_profiles","list_movies","get_showtimes"]}