Example prompts
Once your AI client is connected to Flexweg's MCP server, you don't need to name tools explicitly — just ask in plain language. Your AI reads the tool catalog on connection and picks the right one.
Here are real prompts and what they trigger under the hood.
Publish a new page
"Generate a modern landing page for a coffee shop and publish it on my Flexweg account as
cafe.html."
Under the hood: the AI drafts the HTML, then calls upload_file with path: "cafe.html". It reports back with the live URL once the file is saved.
List your files
"Show me all my online files."
Under the hood: the AI calls list_files and summarizes the result — file count, total size, individual paths and URLs.
"How much storage do I have left?"
Under the hood: the AI calls get_storage_limits and reports the percentage used and remaining quota (bytes and file count).
Edit an existing page
"Open
about.htmland change the hero background to a dark gradient."
Under the hood: the AI calls get_file_content to read the current file, applies the change to the CSS, and calls upload_file to overwrite it.
"In
index.html, replace the heading 'Welcome' with 'Hello, world'."
Under the hood: same pattern — read, edit, write. The AI doesn't re-generate the full page; it only changes what you asked.
Organize your site
"Create a folder
assets/img/and move every.pngfile from the root into it."
Under the hood: the AI calls create_folder, then iterates list_files, filters .png entries, and calls rename_file on each.
"Delete the folder
old-draftsand everything inside it."
Under the hood: one call to delete_folder, which recursively removes every file below the path.
Build a contact form
"Create a contact form with name, email and message fields. Give me the HTML embed snippet."
Under the hood: the AI calls create_form to provision the form, then get_form_embed_html to fetch a ready-to-paste snippet.
"Show me the last 10 submissions to my contact form, skipping spam."
Under the hood: get_form_submissions with per_page=10&is_spam=false.
Upload a video
"Upload
intro.mp4from my Downloads folder tovideos/hero.mp4on my site."
Under the hood: upload_video with a multipart stream. The AI reports back the public URL once the upload finishes.
Multi-site workflows
If you set up multiple sites, mention the site by name and the AI picks the matching server automatically:
"Update the landing page on flexweg-site-1 with the new product announcement."
The AI routes the upload_file call through the flexweg-site-1 MCP server (using that site's API key), leaving flexweg-site-2 untouched.
Tips
- Be specific about paths:
"publish to /blog/2026/launch.html"is clearer than"publish the launch page"— saves a round-trip. - Ask for confirmation on destructive ops:
"delete the old-drafts folder after showing me what's inside"lets you catch mistakes before they happen. - Chain operations in one sentence:
"rename images/ to photos/, then update every <img src> in index.html"— the AI plans the sequence and executes it. - Use temporary API keys for high-risk sessions: if you're about to let the AI refactor the whole site, a 1-hour key minimizes damage from any misstep.
See the tool reference for the full catalog of 27 tools your AI can invoke.