Hi team! We’re exploring the best way to let folks...
# ask-ai
c
Hi team! We’re exploring the best way to let folks at my company use our internal ChatGPT (KAIT) to ask natural-language questions about GrowthBook (e.g., “what’s live?”, “show results for X”, “which variant is winning?”). I’ve seen the REST API and also the GrowthBook MCP server. From your experience, what’s the recommended architecture for a production setup? • MCP vs direct REST: which do you suggest for reliability/maintenance? • Auth: PAT vs service account, and any best practices for scoping read-only? • Data hygiene: default filters for archived / “to-be-deleted”, pagination, and rate limits? • Freshness: suggested caching window vs “force refresh” approach? • Interpretation: guidance for reporting “best performing” / significance in a simple, non-technical way? • Any sample configs, code snippets, or pitfalls to avoid (WAF/IP allow-list, timeouts, etc.)? Goal is something simple and stable that non-technical stakeholders can use. Thanks for any pointers or links!
s
Hey @cuddly-boots-38797 This is an interesting use case. I think MCP would be a good candidate here: • It uses the API(s) + context engineering under the hood • It's used totally locally • It can be used with PATs, which means permissions are user scoped by default • It can be set up in a few minutes for a POC Potential downsides • May not have all the functionality you need • Setup for non-technical users can be more complex • Requires a client like Claude Code or something that can use MCP Happy to chat more about this with you
c
Thank you so much for your reply Ryan. I have access to cursor and basic python coding knowledge. I am trying to learn and develop this for the business. Any help or suggestions would be really helpful.
@strong-mouse-55694, Thank you
s
Hey, hey! We have some instructions on how to install for Cursor here: https://docs.growthbook.io/integrations/mcp#cursor Note that you'll need Node installed on your system, too. If you run into issues, lmk. happy to help