MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

A centralized dashboard ๐Ÿ–ฅ๏ธ for visualizing ๐Ÿ“Š, managing โš™๏ธ, and interacting ๐Ÿ”— with MCP tools in real time โฑ๏ธ. It provides an intuitive interface ๐Ÿง  to monitor workflows ๐Ÿ”„, execute actions โ–ถ๏ธ, and streamline development operations ๐Ÿš€.

Created 3/28/2026
Updated about 6 hours ago
Repository documentation and setup instructions

MCP Dashboard - Model Context Protocol Manager

A comprehensive, production-ready Next.js dashboard for managing MCP (Model Context Protocol) servers and tools with LLM integration.

MCP Dashboard TypeScript Tailwind CSS

๐ŸŒŸ Features

Core Functionality

  • ๐Ÿ”ง LLM Configuration: Support for multiple LLM providers (Anthropic Claude, OpenAI GPT, Custom APIs)
  • ๐Ÿ–ฅ๏ธ MCP Server Management: Add, configure, test, and manage multiple MCP servers
  • โšก Tool Discovery: Automatically discover and manage tools from connected MCP servers
  • ๐Ÿ’ฌ Chat Interface: Interactive chat with LLM using connected MCP tools
  • ๐Ÿ“Š Analytics Dashboard: Real-time token usage tracking and cost estimation
  • ๐Ÿ’พ Persistent Storage: Local storage for configurations and chat history
  • ๐Ÿ“ค Import/Export: Backup and restore configurations

Advanced Features

  • Multiple Server Types: Support for both URL (SSE) and STDIO MCP servers
  • System Prompts: Customizable system prompts to guide LLM behavior
  • Tool Selection: Choose which MCP tools to enable
  • Connection Testing: Test MCP server connectivity before use
  • Token Analytics: Track input/output tokens and estimated costs
  • Conversation History: Save and review past interactions
  • Dark Mode: Beautiful dark mode support
  • Responsive Design: Works on desktop, tablet, and mobile

๐Ÿš€ Quick Start

Prerequisites

  • Node.js 18.x or higher
  • npm or yarn

Installation

  1. Clone or download the project
cd mcp-dashboard
  1. Install dependencies
npm install
  1. Run the development server
npm run dev
  1. Open your browser Navigate to http://localhost:3000

๐Ÿ“– Usage Guide

Initial Setup

  1. Configure Your LLM
    • On first launch, you'll see the setup screen
    • Select your LLM provider (Anthropic, OpenAI, or Custom)
    • Enter your API URL (e.g., https://api.anthropic.com/v1/messages)
    • Provide your API key
    • Specify the model (e.g., claude-sonnet-4-20250514)
    • Click "Continue to Dashboard"

Adding MCP Servers

  1. Navigate to MCP Servers tab

  2. Fill in server details:

    • Name: A friendly name for your server (e.g., "Gmail MCP")
    • Type: Choose URL (SSE) or STDIO
    • URL/Command: Server endpoint or command to run
    • Arguments (for STDIO): Comma-separated args
  3. Click "Add Server"

  4. Test Connection: Click the refresh icon to test connectivity

Example MCP Server Configurations

URL-based Server (Gmail):

Name: Gmail MCP
Type: URL
URL: https://gmail.mcp.claude.com/mcp

STDIO-based Server:

Name: Local MCP Server
Type: STDIO
Command: npx
Arguments: -y, @modelcontextprotocol/server-filesystem, /path/to/directory

Using the Chat Interface

  1. Navigate to Chat Interface tab

  2. Configure System Prompt (right panel):

    • Customize how the LLM behaves
    • Default prompt guides tool usage
    • Click "Save Prompt" to persist
  3. Start Chatting:

    • Type your message in the input box
    • Press Enter or click Send
    • LLM will use connected MCP tools automatically
    • Tool usage is displayed with each response

Monitoring Analytics

  1. Navigate to Analytics tab
  2. View metrics:
    • Total tokens used
    • Input/Output token breakdown
    • Estimated costs
    • Server status
    • Conversation statistics

Managing Configuration

Export Configuration:

  • Click the Download icon in the header
  • Saves your servers and settings (API key excluded)

Import Configuration:

  • Click the Upload icon in the header
  • Select a previously exported JSON file
  • Configuration will be restored

๐Ÿ—๏ธ Architecture

Technology Stack

  • Framework: Next.js 14 (App Router)
  • Language: TypeScript
  • Styling: Tailwind CSS
  • Icons: Lucide React
  • State Management: React Hooks
  • Storage: Browser LocalStorage

Project Structure

mcp-dashboard/
โ”œโ”€โ”€ app/
โ”‚   โ”œโ”€โ”€ layout.tsx          # Root layout
โ”‚   โ”œโ”€โ”€ page.tsx            # Main dashboard component
โ”‚   โ””โ”€โ”€ globals.css         # Global styles
โ”œโ”€โ”€ package.json
โ”œโ”€โ”€ tsconfig.json
โ”œโ”€โ”€ tailwind.config.js
โ””โ”€โ”€ next.config.js

State Management

The application uses React hooks for state management:

  • llmConfig: LLM provider configuration
  • mcpServers: List of configured MCP servers
  • mcpTools: Discovered tools from servers
  • messages: Chat conversation history
  • tokenUsage: Token consumption analytics

Data Persistence

All data is stored in browser LocalStorage:

  • llmConfig: LLM configuration (API key is encrypted)
  • mcpServers: Server configurations
  • chatMessages: Conversation history
  • tokenUsage: Token analytics
  • systemPrompt: Custom system prompt

๐Ÿ” Security

  • API Keys: Stored locally, never sent to third parties
  • HTTPS Only: Always use HTTPS endpoints
  • No Backend: All processing happens client-side
  • Local Storage: Data stays in your browser

๐ŸŽจ Customization

Changing Colors

Edit tailwind.config.js and globals.css to customize the color scheme:

/* globals.css */
:root {
  --primary: 262 83% 58%;  /* Purple */
  --secondary: 210 40% 96.1%;
  /* ... */
}

Adding New Features

The codebase is modular and easy to extend:

  • Add new tabs by modifying the activeTab state
  • Create new server types by extending the MCPServer interface
  • Add analytics widgets in the Analytics tab

๐Ÿ“Š Token Pricing

Current pricing estimates (configurable in code):

  • Claude Sonnet: $3/M input tokens, $15/M output tokens
  • Adjust in the calculateCost() function

๐Ÿ› Troubleshooting

Server Connection Fails

  • Verify the server URL is correct
  • Check server is running and accessible
  • Ensure CORS is configured on the server

Chat Not Working

  • Verify API key is correct
  • Check API URL matches your provider
  • Ensure connected servers are active

Tools Not Appearing

  • Test server connection first
  • Verify server implements MCP protocol correctly
  • Check browser console for errors

๐Ÿš€ Deployment

Build for Production

npm run build
npm start

Deploy to Vercel

npm install -g vercel
vercel

Deploy to Netlify

npm run build
# Upload the .next folder to Netlify

๐Ÿค Contributing

This is a complete, self-contained project. To modify:

  1. Fork or copy the code
  2. Make your changes
  3. Test thoroughly
  4. Deploy your version

๐Ÿ“ License

MIT License - feel free to use this in your projects!

๐Ÿ™ Acknowledgments

  • Built with Next.js and React
  • Designed with Tailwind CSS
  • Icons by Lucide
  • Model Context Protocol by Anthropic

๐Ÿ“ง Support

For issues or questions:

  1. Check the troubleshooting section
  2. Review the code comments
  3. Consult MCP documentation at Anthropic

Built with โค๏ธ for the MCP community

Quick Setup
Installation guide for this server

Install Package (if required)

npx @modelcontextprotocol/server-mcp-studio

Cursor configuration (mcp.json)

{ "mcpServers": { "hardikrathod777-mcp-studio": { "command": "npx", "args": [ "hardikrathod777-mcp-studio" ] } } }