Sales Explorer
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., "@Sales Explorershow me sales by region"
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.
Sales Explorer — a minimal MCP App
A tiny, dependency-light demo of an MCP App: an interactive UI that an MCP server ships into an AI host (Claude, etc.), rendered in a sandboxed iframe right in the conversation.
The whole point is one moment: you click a bar and the chart drills down with no model round-trip — and the assistant still knows what you're looking at.
The three beats this demonstrates
UI in the chat, not text. Ask "show me sales by region" → a bar chart renders inline instead of a table of numbers.
Bidirectional, model-free interaction. Click a region → the iframe calls the
get_salestool itself and re-renders. No new prompt, no model turn.The model stays in the loop. After drilling in, the app tells the host what you're viewing, so you can then say "email this to my team" and it knows what "this" is.
Related MCP server: ChatGPT Apps SDK Next.js Starter
How it works (the two files that matter)
server.ts— registers a tool (get_sales) whose_meta.ui.resourceUripoints at a UI resource (ui://sales-explorer/mcp-app.html). That one line of metadata is what turns a normal tool into an MCP App.src/mcp-app.ts— the iframe app. It renders the chart from the result the host pushes in (app.ontoolresult), and on a bar click callsapp.callServerTool({ name: "get_sales", arguments: { region } }).
The UI is bundled by Vite into a single self-contained HTML file
(dist/mcp-app.html) so the server can return it as one resource with no
external asset requests.
Run it
Requires Node ≥ 22.18 (run TypeScript directly — no tsx/ts-node).
npm install
npm run dev # builds the UI on change + serves MCP over HTTP on :3001HTTP endpoint:
http://localhost:3001/mcp(Streamable HTTP, stateless)stdio:
npm run start:stdio
Then point an MCP-Apps-capable host at it (Claude Desktop, MCPJam, VS Code Copilot, …) and ask: "show me sales by region."
Verify without a host (curl)
npm start & # build UI + serve
# list tools — note the _meta.ui.resourceUri on get_sales
curl -s -H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-X POST http://localhost:3001/mcp \
--data '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# the drill-down the iframe performs on a click
curl -s -H 'Content-Type: application/json' \
-H 'Accept: application/json, text/event-stream' \
-X POST http://localhost:3001/mcp \
--data '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"get_sales","arguments":{"region":"EMEA"}}}'Project layout
server.ts # MCP server: get_sales tool + ui:// resource
main.ts # transport (Streamable HTTP / stdio)
mcp-app.html # UI shell (bundled into dist/mcp-app.html)
src/mcp-app.ts # the iframe app: render chart, click -> callServerTool
src/styles.css # chart styling (uses host theme variables when provided)
vite.config.ts # single-file bundle configBuilt on @modelcontextprotocol/ext-apps + @modelcontextprotocol/sdk.
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
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/tpiros/mcp-apps'
If you have feedback or need assistance with the MCP directory API, please join our Discord server