Skip to main content
Glama
prompt_welcome.py1.31 kB
import argparse import webbrowser import sys GITHUB_REPO = "https://github.com/spyrosze/mcp-openfoodtox" # Update with your repo DISCUSSIONS_URL = f"{GITHUB_REPO}/discussions/new?category=feedback" def prompt_feedback(): print("\n" + "="*60) print("🎉 Setup complete!\nYou can now install in Claude desktop by running 'make claude'.\nThank you for using mcp-openfoodtox!") print("="*60) print("\nIf you find this useful, please consider:") print(" ⭐ Starring the repo: https://github.com/spyrosze/mcp-openfoodtox") print(" 💬 Leaving feedback: https://github.com/spyrosze/mcp-openfoodtox/discussions") print(" 👾 Contributors welcome: https://github.com/spyrosze/mcp-openfoodtox?tab=contributing-ov-file#readme") print("\nWould you like to open the github repository now? (y/n): ", end="") response = input().strip().lower() if response in ['y', 'yes']: webbrowser.open(GITHUB_REPO) print("Opened github repository page in your browser!") print() if __name__ == "__main__": parser = argparse.ArgumentParser(description="Prompt for feedback after setup") parser.add_argument("--skip", action="store_true", help="Skip the feedback prompt") args = parser.parse_args() if not args.skip: prompt_feedback()

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/spyrosze/mcp-openfoodtox'

If you have feedback or need assistance with the MCP directory API, please join our Discord server