How to Create Your Waitlist with Qwen Code
Connect Qwen Code to the UseWait MCP server and let it build your waitlist from the terminal: page, slug, confirmation email and custom domain. One settings file, one prompt.
Qwen Code is Alibaba's open, Apache-licensed CLI agent, tuned for the Qwen coder models. Point it at the UseWait MCP server and it goes from a one-line brief to a live waitlist: it picks a slug, writes the page, sets up the confirmation email and can wire a custom domain. Here is how to create your waitlist with Qwen Code.
- 01Get your UseWait API keyCreate a free UseWait account, open Dashboard, Settings, API Keys, and create a key (it looks like uw_live_...). Copy it right away, since it is shown only once. API and MCP access are on every plan, free included.
- 02Add UseWait to settings.jsonQwen Code reads MCP servers from mcpServers in ~/.qwen/settings.json (global) or .qwen/settings.json (per project). Remote HTTP servers use httpUrl, not url, so paste the snippet below with your real key. You can also run: qwen mcp add --transport http usewait https://usewait.com/api/mcp/mcp --header "Authorization: Bearer uw_live_YOUR_KEY" --scope user.~/.qwen/settings.json
{ "mcpServers": { "usewait": { "httpUrl": "https://usewait.com/api/mcp/mcp", "headers": { "Authorization": "Bearer uw_live_YOUR_KEY", "Accept": "application/json, text/event-stream" } } } } - 03Ask Qwen Code for your waitlistStart Qwen Code in your project and prompt it: "Create a waitlist for my indie game. Pick a slug and give the page an arcade feel." It reads the get_started tool for the flow and get_page_format for the exact page contract, then creates the waitlist and writes the page. It is live at usewait.com/w/<slug> the moment it is created.
- 04Level it upAsk it to connect your own domain (it relays the exact CNAME record to add at your DNS provider, pointing at waas.usewait.com), upload a logo to the CDN, or write a branded confirmation email. Use list_entries any time to read signups and referral stats.
- Picks and claims a unique slug
- Writes page code matched to your brand
- Creates the confirmation email template
- Uploads logos and images to the CDN
- Walks you through custom domain DNS
- Reads signups and referral stats on demand
- Does Qwen Code support remote MCP servers?
Yes. Qwen Code connects to remote HTTP MCP servers through the httpUrl field with a headers object, so it reaches UseWait's hosted endpoint directly with your Authorization header. No local bridge is needed.
- Why httpUrl instead of url?
Qwen Code uses httpUrl for streamable HTTP servers and reserves url for other transports. The Accept header advertising text/event-stream keeps partial progress flowing on longer tool calls.
- Is it free?
UseWait's API and MCP access are on every plan, including the free tier. Some capabilities the tools expose, like custom domains, depend on the waitlist being licensed.
Free plan includes full API and MCP access. Your agent does the rest. Create your free API key.
Full reference at docs.usewait.com and a quick overview on the developers page.
Connect UseWait to other AI tools