prompt-gui-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@prompt-gui-mcpShow a form asking for my deployment environment and risk tolerance."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
prompt-gui-mcp
prompt-gui-mcp lets AI coding agents ask for your input through beautiful, interactive GUI forms instead of plain text prompts.
Instead of forcing an agent to guess, stall, or ask you in chat, the agent can call an MCP tool that opens a macOS desktop prompt. You answer in the app, and the result goes back to the agent as structured data.
For example, send this prompt to your agent:
Use prompt-gui-mcp to show me a form with questions that will help you recommend a travel destination.
Ask about my preferences, travel season, budget, trip style, and any other details you need.opens a desktop form like this:
flowchart LR
Agent["AI coding agent"] -->|Calls prompt-form| MCP["prompt-gui-mcp"]
MCP -->|Opens GUI form| App["Desktop app"]
App -->|Shows prompt| User["You"]
User -->|Submits answers| App
App -->|Returns structured data| MCP
MCP -->|Tool result| AgentWhat It Does
Shows flexible forms generated from an MCP tool call.
Agents can compose forms with elements such as text, textarea, radio, select, checkbox-list, markdown, and image fields.
Returns the user's validated answers to the calling agent.
Keeps the prompt in a small always-on-top desktop window.
Includes a follow-up wait tool so agents can continue waiting when a prompt takes longer than their normal tool timeout.
The current MCP tools are:
Tool | Purpose |
| Show a structured form and return submitted values plus optional feedback. |
| Continue waiting for a pending prompt by UUID. |
Related MCP server: Interactive MCP
Download
Only the macOS app is packaged right now.
Open the GitHub Releases page.
Download the latest macOS
.dmgor.zipasset.Install and launch
prompt-gui-mcp.Keep the app running while your coding agent uses the MCP server.
The mac app starts the local backend sidecar automatically. By default, the MCP endpoint is:
http://127.0.0.1:43118/mcpSet Up Your Coding Agent
Configure any MCP client that supports Streamable HTTP to connect to the local server:
{
"mcpServers": {
"prompt-gui-mcp": {
"url": "http://127.0.0.1:43118/mcp"
}
}
}Then restart the agent or reload its MCP servers. The desktop app must be running before the agent calls prompt-form.
Some agents use a TOML-style MCP config instead:
[mcp_servers.prompt-gui-mcp]
url = "http://127.0.0.1:43118/mcp"After setup, ask the agent to use prompt-gui-mcp when it needs your input. For example:
Use prompt-gui-mcp to show me a form before choosing the deployment strategy. Ask for the target environment, risk tolerance, rollback preference, and approval notes.Build And Run The Packaged App
Requirements:
Node.js 22+
pnpm 10+
Rust toolchain
Xcode Command Line Tools on macOS
Install dependencies:
pnpm installBuild the packaged desktop app:
pnpm --filter desktop tauri:buildOpen the generated app bundle:
open apps/desktop/src-tauri/target/release/bundle/macos/prompt-gui-mcp.appThe .app, .dmg, and .zip outputs are written under:
apps/desktop/src-tauri/target/release/bundle/Development Checks
pnpm --filter backend check
pnpm --filter desktop check
pnpm simulatepnpm simulate starts the desktop app and sends a sample MCP tool call so you can test the full prompt flow.
Architecture
Coding agent -> MCP HTTP endpoint -> backend queue -> desktop app -> human
^ |
|--------------------|apps/backendis the Node.js MCP server and local HTTP API.apps/desktopis the Svelte frontend and Tauri v2 macOS shell.The backend listens on
127.0.0.1:43118unlessI_AM_MCP_SERVER_PORTis set.The desktop app reads backend state over local HTTP/SSE and submits completed form results back to the backend.
Repository
apps/backend MCP server, task queue, local HTTP/SSE API
apps/desktop Svelte UI and Tauri desktop shell
docs Design notes, packaging notes, and README assetsContributions are welcome. Keep changes focused, run the checks above, and open a pull request with a clear description.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/royhcj/prompt-gui-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server