Replies: 1 comment
|
There are now two OSS options for this. 1. MCP Inspector v2 The current Inspector supports MCP Apps directly. Start it with: npx @modelcontextprotocol/inspectorConnect it to the Streamable HTTP endpoint of the FastMCP server, then open the Apps tab, select the app tool, provide its arguments, and choose Open App. The Inspector fetches the For automation, the Inspector also documents a CLI-first workflow using 2. The official The MCP Apps repository includes a reference host that can connect to arbitrary HTTP MCP servers: git clone https://github.com/modelcontextprotocol/ext-apps.git
cd ext-apps
npm install
SERVERS='["http://localhost:8000/mcp"]' npm startThen open For current interoperability testing, I would use Inspector first because it exposes the protocol and App metadata. Use |
Uh oh!
There was an error while loading. Please reload this page.
I started to test MCP apps with FastMCP for mcp-app server,
and want to test with other UI Server besides FastMCP dev UI to keep interoperability.
For example, as far as legacy MCP (tool, resource, prompt), modelcontextprotocol/inspector and others can be used.
but how about mcp apps?
the above inspector seems not supporting mcp app yet.
modelcontextprotocol/ext-apps/app-bridge.ts seems to be used partially by
fastmcp dev UIbut I couldn't find easy way to use it as standanlone UI server, like modelcontextprotocol/inspector.Is there any OSS for UI server which supports mcp app and tool.
All reactions