update docs

This commit is contained in:
Fredrik Jensen 2025-12-06 14:20:21 +01:00
parent 55560e61d2
commit 8fd8fd3f13
3 changed files with 39 additions and 110 deletions

131
README.md
View File

@ -1,20 +1,15 @@
# MCP UI Kit # MCP UI Kit
Build interactive React UIs for MCP tools. Build interactive React UIs for MCP tools.
The [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) enables AI assistants to interact with external tools and data. The [mcp-ui](https://github.com/anthropics/mcp-ui) project extends this with rich, interactive UI components that can be rendered directly in the AI chat. The [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) enables AI assistants to interact with external tools. **mcp-ui-kit** simplifies building rich UI components that render directly in AI chat:
**mcp-ui-kit** simplifies building these UI components by: - **Bundling on-demand** — Write React components, bundled automatically when the tool is called
- **Zero config** — No webpack/vite setup, just `createUI()` and point to your `.tsx` file
- **Bundling on-demand** — Write React components, they're bundled automatically when the tool is called
- **Zero config** — No webpack/vite setup needed, just `createUI()` and point to your `.tsx` file
- **Props from server** — Pass data from your MCP tool directly to React via `useProps()` - **Props from server** — Pass data from your MCP tool directly to React via `useProps()`
- **Two-way communication** — Components can `sendPrompt()` to the AI or `callTool()` to invoke other MCP tools - **Two-way communication** — Components can `sendPrompt()` to the AI or `callTool()` to invoke other MCP tools
Built on top of [@mcp-ui/server](https://www.npmjs.com/package/@mcp-ui/server). <a href="https://mcp-ui-kit-inspector.vercel.app/" target="_blank">MCP UI Inspector</a> — Built on [@mcp-ui/server](https://www.npmjs.com/package/@mcp-ui/server)
<a href="https://mcp-ui-kit-inspector.vercel.app/" target="_blank">MCP UI Inspector</a>
## Installation ## Installation
@ -24,63 +19,39 @@ npm install mcp-ui-kit @modelcontextprotocol/sdk
## Server Usage ## Server Usage
Create UI components that bundle on-demand within your MCP server:
```typescript ```typescript
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js'; import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; import { createUI } from 'mcp-ui-kit/server';
import { createUI } from 'mcp-ui-kit/server'; // 👈 mcp-ui-kit
// Create the MCP server const server = new McpServer({ name: 'my-server', version: '1.0.0' });
const server = new McpServer({
name: 'my-server',
version: '1.0.0'
});
// Create a UI component // 👈 mcp-ui-kit const dashboardUI = createUI('my-dashboard', import.meta.resolve('./MyComponent.tsx'));
const dashboardUI = createUI( // 👈 mcp-ui-kit
'my-dashboard', // 👈 mcp-ui-kit
import.meta.resolve('./MyComponent.tsx') // 👈 mcp-ui-kit
); // 👈 mcp-ui-kit
// Register a tool with the UI
server.registerTool( server.registerTool(
'dashboard', 'dashboard',
{ { description: 'Interactive dashboard', _meta: dashboardUI.meta },
description: 'Interactive dashboard',
_meta: dashboardUI.meta // 👈 mcp-ui-kit
},
async () => ({ async () => ({
content: [ content: [
{ type: 'text', text: 'Dashboard loaded' }, { type: 'text', text: 'Dashboard loaded' },
await dashboardUI.component({ // 👈 mcp-ui-kit await dashboardUI.component({ props: { title: 'Hello' }, frameSize: ['700px', '500px'] })
props: { title: 'Hello' }, // 👈 mcp-ui-kit
frameSize: ['700px', '500px'] // 👈 mcp-ui-kit
}) // 👈 mcp-ui-kit
] ]
}) })
); );
// Start the server
const transport = new StdioServerTransport();
await server.connect(transport);
``` ```
### With Input Schema ### With Input Schema
Tools can accept parameters via `inputSchema` and pass them to your UI component:
```typescript ```typescript
import { z } from 'zod'; import { z } from 'zod';
import { createUI } from 'mcp-ui-kit/server'; // 👈 mcp-ui-kit import { createUI } from 'mcp-ui-kit/server';
const stockUI = createUI('stocks', import.meta.resolve('./StockDashboard.tsx')); // 👈 mcp-ui-kit const stockUI = createUI('stocks', import.meta.resolve('./StockDashboard.tsx'));
server.registerTool( server.registerTool(
'stock_portfolio', 'stock_portfolio',
{ {
description: 'View stock portfolio with charts', description: 'View stock portfolio',
_meta: stockUI.meta, // 👈 mcp-ui-kit _meta: stockUI.meta,
inputSchema: { inputSchema: {
symbols: z.array(z.string()).default(['AAPL', 'GOOGL']), symbols: z.array(z.string()).default(['AAPL', 'GOOGL']),
timeframe: z.enum(['1D', '1W', '1M', '1Y']).default('1M'), timeframe: z.enum(['1D', '1W', '1M', '1Y']).default('1M'),
@ -89,9 +60,7 @@ server.registerTool(
async ({ symbols, timeframe }) => ({ async ({ symbols, timeframe }) => ({
content: [ content: [
{ type: 'text', text: `Showing ${symbols.join(', ')} for ${timeframe}` }, { type: 'text', text: `Showing ${symbols.join(', ')} for ${timeframe}` },
await stockUI.component({ // 👈 mcp-ui-kit await stockUI.component({ props: { symbols, timeframe } })
props: { symbols, timeframe }, // 👈 mcp-ui-kit (params → props)
})
] ]
}) })
); );
@ -99,31 +68,11 @@ server.registerTool(
## Client Usage ## Client Usage
Helper functions for your React components (the ones you pass to `createUI`):
```tsx ```tsx
// StockDashboard.tsx import { sendPrompt, callTool, useProps } from 'mcp-ui-kit/ui';
import { useState } from 'react';
import { sendPrompt, callTool, useProps } from 'mcp-ui-kit/ui'; // 👈 mcp-ui-kit
function StockDashboard() { function StockDashboard() {
const [analysis, setAnalysis] = useState<string | null>(null); const { symbols, timeframe } = useProps({ symbols: ['AAPL'], timeframe: '1M' });
// Get props passed from server (matches inputSchema params) // 👈 mcp-ui-kit
const { symbols, timeframe } = useProps({ // 👈 mcp-ui-kit
symbols: ['AAPL'], // 👈 mcp-ui-kit
timeframe: '1M' // 👈 mcp-ui-kit
}); // 👈 mcp-ui-kit
const handleAnalyze = (symbol: string) => {
// Send a message to the AI chat // 👈 mcp-ui-kit
sendPrompt(`Analyze ${symbol} stock performance over ${timeframe}`); // 👈 mcp-ui-kit
};
const handleRefresh = async (symbol: string) => {
// Call another MCP tool // 👈 mcp-ui-kit
callTool('get_stock_price', { symbol }); // 👈 mcp-ui-kit
};
return ( return (
<div> <div>
@ -131,12 +80,8 @@ function StockDashboard() {
{symbols.map(symbol => ( {symbols.map(symbol => (
<div key={symbol}> <div key={symbol}>
<span>{symbol}</span> <span>{symbol}</span>
<button onClick={() => handleAnalyze(symbol)}> <button onClick={() => sendPrompt(`Analyze ${symbol} over ${timeframe}`)}>Analyze</button>
Ask AI to Analyze <button onClick={() => callTool('get_stock_price', { symbol })}>Refresh</button>
</button>
<button onClick={() => handleRefresh(symbol)}>
Refresh Price
</button>
</div> </div>
))} ))}
</div> </div>
@ -144,49 +89,25 @@ function StockDashboard() {
} }
``` ```
## MCP UI Inspector
The MCP UI Inspector is a developer tool for testing MCP servers with UI capabilities. It provides a visual interface to:
- **Connect to MCP servers** — Enter your server URL and establish a connection
- **Browse available tools** — See all registered tools and their descriptions
- **Configure parameters** — Fill in tool input schemas with a form UI or raw JSON
- **Execute tools** — Run tools and see both text and UI responses
- **Preview UI components** — View your React components rendered in real-time with full interactivity
![MCP UI Inspector](docs/mcp-ui-inspector.png)
The inspector makes it easy to iterate on your UI components without needing a full AI chat client. You can test `sendPrompt()` and `callTool()` interactions, verify props are passed correctly, and debug your components in isolation.
## API ## API
### Server (`mcp-ui-kit/server`) ### Server (`mcp-ui-kit/server`)
**`createUI(name, entryUrl)`** - Creates a UI component **`createUI(name, entryUrl)`** — Creates a UI component
- `name`: Component identifier (used in the `ui://` URI) - Returns `{ meta, component(opts?) }`
- `entryUrl`: Path to the component entry file - `opts.props`: Data passed to your React component
- Returns: `{ meta, component(opts?) }`
- `meta`: Object to spread into tool's `_meta` for UI resource linking
- `component(opts?)`: Async function returning the UI resource
- `opts.props`: Data to pass to your React component
- `opts.frameSize`: `[width, height]` e.g. `['700px', '500px']` - `opts.frameSize`: `[width, height]` e.g. `['700px', '500px']`
The `entryUrl` parameter accepts both formats:
```typescript ```typescript
// ESM (recommended) - using import.meta.resolve() createUI('dashboard', import.meta.resolve('./MyComponent.tsx')); // ESM
createUI('dashboard', import.meta.resolve('./MyComponent.tsx')); createUI('dashboard', require.resolve('./MyComponent.tsx')); // CommonJS
// CommonJS - using require.resolve() or absolute paths
createUI('dashboard', require.resolve('./MyComponent.tsx'));
createUI('dashboard', path.join(__dirname, './MyComponent.tsx'));
``` ```
### UI (`mcp-ui-kit/ui`) ### UI (`mcp-ui-kit/ui`)
- **`useProps(defaults)`** - Get props passed from the server via `component({ props })` - **`useProps(defaults)`** — Get props passed from the server
- **`sendPrompt(message)`** - Send a message to the AI chat - **`sendPrompt(message)`** Send a message to the AI chat
- **`callTool(name, params)`** - Invoke an MCP tool - **`callTool(name, params)`** Invoke an MCP tool
## Development ## Development

View File

@ -124,3 +124,8 @@
.sidebar-links a:hover { .sidebar-links a:hover {
text-decoration: underline; text-decoration: underline;
} }
.small {
font-size: 12px;
color: var(--text-secondary);
}

View File

@ -52,6 +52,10 @@ export function Sidebar({
{isConnected ? 'Disconnect' : 'Connect'} {isConnected ? 'Disconnect' : 'Connect'}
</Button> </Button>
<p className="small">
Also works with local MCP servers.
</p>
{error && ( {error && (
<div className="error-message"> <div className="error-message">
<AlertCircle size={14} /> <AlertCircle size={14} />
@ -74,11 +78,10 @@ export function Sidebar({
</div> </div>
<div className="sidebar-section-content"> <div className="sidebar-section-content">
<p className="sidebar-about"> <p className="sidebar-about">
MCP UI Inspector is a developer tool for testing MCP servers with UI capabilities. MCP UI Inspector is a developer tool for testing MCP servers with UI capabilities. </p>
</p>
<div className="sidebar-links"> <div className="sidebar-links">
<a href="https://modelcontextprotocol.io" target="_blank" rel="noopener noreferrer"> <a href="https://github.com/fredjens/mcp-ui-kit" target="_blank" rel="noopener noreferrer">
MCP Documentation MCP UI Kit
</a> </a>
</div> </div>
</div> </div>