Here are real-world examples of what you can ask your AI assistant to do with Feedspace. Each example shows the prompt you’d use and the tools the AI will call behind the scenes.Documentation Index
Fetch the complete documentation index at: https://docs.feedspace.io/llms.txt
Use this file to discover all available pages before exploring further.
Common Workflows
Get an overview of your reviews
Get an overview of your reviews
Prompt: “Show me a summary of all my reviews in my workspace”What happens:
- AI calls
list_workspacesto find your workspace - AI calls
get_feed_summaryto get review statistics - You receive a breakdown of total reviews, ratings distribution, and sentiment analysis
Find your best testimonials
Find your best testimonials
Prompt: “Find all 5-star text reviews with positive sentiment”What happens:
- AI calls
list_workspacesto get your workspace ID - AI calls
filter_feedswithstarRatings: [5],sentiment: ["positive"],feedTypes: ["text"] - You receive a filtered list of your top testimonials
Create a Wall of Love
Create a Wall of Love
Prompt: “Create a Wall of Love page called ‘Customer Love’ with my top-rated reviews”What happens:
- AI calls
list_workspacesto get your workspace ID - AI calls
filter_feedsto find your best reviews - AI calls
create_pagewith the page name and review identifiers - AI calls
get_page_shareto get the public URL - You receive the URL to your new testimonial page
Set up a review collection form
Set up a review collection form
Prompt: “Create a review form for my SaaS product that collects text and video reviews with a custom thank-you message”What happens:
- AI calls
list_workspacesto get your workspace ID - AI calls
create_review_collection_formwith your customization preferences (review types, thank-you message, etc.) - AI calls
get_form_shareto get the shareable link - You receive the form link to share with your customers
Build an embeddable widget
Build an embeddable widget
Prompt: “Create a carousel widget with my 5-star reviews and give me the embed code”What happens:
- AI calls
list_workspacesto get your workspace ID - AI calls
filter_feedsto find 5-star reviews - AI calls
create_widgetwith type 4 (Carousel) and the review identifiers - AI calls
get_widget_shareto get the HTML embed code - You receive the code snippet to paste into your website
Organize reviews with labels
Organize reviews with labels
Prompt: “Create a ‘Featured’ label and apply it to all reviews with 5-star ratings”What happens:
- AI calls
list_workspacesto get your workspace ID - AI calls
create_labelwith the name “Featured” - AI calls
filter_feedsto find all 5-star reviews - AI calls
batch_update_feedswithaction: "assign_labels"to tag all matching reviews
Import an existing testimonial
Import an existing testimonial
Prompt: “Import a testimonial from John Smith at Acme Corp: ‘Great product, highly recommended!’ with a 5-star rating”What happens:
- AI calls
list_workspacesto get your workspace ID - AI calls
import_text_reviewwith the reviewer name, company, review text, and rating - The review is added to your workspace
Invite a team member
Invite a team member
Prompt: “Invite jane@company.com as an Editor to my workspace”What happens:
- AI calls
list_workspacesto get your workspace ID - AI calls
invite_team_memberwith the email and role - An invitation email is sent to the team member
Tips for Best Results
- Be specific about your workspace if you have multiple — mention it by name (e.g. “in my Acme workspace”)
- Mention review types when filtering — say “text reviews”, “video reviews”, or “audio reviews” to narrow results
- Use natural language — the AI will translate your request into the right tool calls
- Ask for links and URLs when you need shareable outputs (form links, page URLs, embed codes)
- Combine actions — you can ask the AI to do multi-step workflows in a single prompt (e.g. “Find my best reviews and create a Wall of Love with them”)