This guide walks you through running the Kunna MCP Client inspector locally and connecting it to a live MCP server. By the end you will have the Vite development server running atDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/vancovx/KunnaClienteMCP/llms.txt
Use this file to discover all available pages before exploring further.
http://localhost:5173, the inspector open in your browser, and a successful MCP handshake with a server of your choice.
Install dependencies
Install all Node.js dependencies declared in Node.js 18 or higher is required. The project uses ES modules (
package.json:"type": "module" in package.json), so older Node versions are not supported.Start the development server
Start Vite in development mode:Vite starts on
http://localhost:5173 with Hot Module Replacement (HMR) enabled. Any change you save to a source file is reflected in the browser immediately without a full reload.Open the Inspector
Navigate to
http://localhost:5173 in your browser. From the top navigation bar, click Inspector to open the MCP inspection panel.Connect to an MCP server
Fill in the connection form that appears in the Inspector:
- Transport — choose
HTTP(Streamable HTTP) orSSEdepending on what your server supports. - URL — enter the full endpoint, for example
http://localhost:3001/mcp. - Auth — select
Noneif the server is unauthenticated, or selectBearerand paste a token if the server requires it. - Click Connect.
listTools, listPrompts, and listResources automatically. The results appear in the sidebar within seconds.Explore capabilities
After a successful handshake, the sidebar is populated with everything the server exposes: tools, prompts, and resources. Click any item to open its detail panel. For tools and prompts, a dynamic form is generated from the item’s JSON Schema — fill in the fields and click the execute button to call the server and view the formatted response in the activity console.
Typical workflow with the Kunna Server
If you are using the companion Kunna MCP server alongside this client, the recommended workflow is:- Start the Kunna MCP server — it listens by default at
http://localhost:3000/mcp. - Open the Inspector, select HTTP transport, enter
http://localhost:3000/mcpas the URL, choose Bearer auth, and supply the server’sMCP_AUTH_TOKEN. In development mode the server skips token verification, so auth is not strictly required. - Explore the available tools — including
search-campus-buildings,query-data, andquery-aggregation— as well as the IoT report prompts exposed by the server. - Select any tool or prompt, fill in the generated form (or switch to raw JSON mode), and execute directly from the browser. Review the formatted result and inspect the raw request/response pair in the activity console.
Available npm scripts
| Script | Description |
|---|---|
dev | Start the Vite development server with HMR at http://localhost:5173 |
build | Compile and bundle the app for production into the dist/ directory |
preview | Serve the production build locally for a pre-deploy sanity check |
lint | Run ESLint across all source files |
build-docker | Build the Docker image tagged kunnaclientemcp-frontend:latest |