A minimal demo showcasing the use-mcp React hook for connecting to Model Context Protocol (MCP) servers.
- Connect to any MCP server via URL
- View available tools and their schemas
- Browse and read server resources
- Interact with server-provided prompts
- Real-time connection status monitoring
- Debug logging for troubleshooting
- Clean, minimal UI focused on MCP functionality
- Make sure you've built the parent
use-mcpdirectory at least once!
cd ../.. && pnpm build && cd -Alternatively, run pnpm dev in the parent directory in a second terminal if you want to iterate on both the library and the example together.
- Install dependencies:
pnpm install- Start the development server:
pnpm dev-
Open your browser and navigate to the displayed local URL
-
Enter an MCP server URL to test the connection and explore available tools, resources, and prompts
This example shows how easy it is to integrate MCP servers into a React application using the use-mcp hook. The core functionality is just:
import { useMcp } from 'use-mcp/react'
const connection = useMcp({
url: 'your-mcp-server-url',
debug: true,
autoRetry: false
})
// Access connection.state, connection.tools, connection.resources,
// connection.prompts, connection.error, etc.The McpServers component wraps this hook to provide a complete UI for server management, tool inspection, resource browsing, and prompt interaction.
- Tools: Execute server-provided tools with custom arguments and view results
- Resources: Browse available resources and read their contents (text or binary)
- Resource Templates: View dynamic resource templates with URI patterns
- Prompts: Interact with server prompts, provide arguments, and view generated messages
Note: Not all MCP servers implement all features. The inspector will gracefully handle servers that only support a subset of the MCP specification.