drio
Open app

@madisonbullard/mcp-servers

Source

A monorepo containing Model Context Protocol servers for various use cases.

Catalog onlyCatalog onlySTDIO

Overview

MCP Servers is a monorepo that contains Model Context Protocol servers designed for various use cases, along with a terminal user interface (TUI) to facilitate the installation of these servers.

To use MCP Servers, you can install the TUI package and follow the provided commands to build and run the desired MCP server. The TUI simplifies the process of installing and managing MCP servers for different clients.

  • A TUI for easy installation of MCP servers. - Support for various MCP servers tailored for different clients (e.g., Claude Desktop, Cursor). - Quick setup and deployment of custom MCP servers to NPM or other package managers.
  1. Installing and managing MCP servers for different applications.
  2. Developing custom MCP servers for specific client needs.
  3. Simplifying the deployment process of Model Context Protocol servers.

Add to your AI client

Use these steps to connect @madisonbullard/mcp-servers in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-servers-madisonbullard": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-madisonbullard"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-servers-madisonbullard": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-madisonbullard"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-servers-madisonbullard": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-madisonbullard"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-servers-madisonbullard": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-madisonbullard"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-servers-madisonbullard": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-madisonbullard"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-servers-madisonbullard": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-servers-madisonbullard"
      ]
    }
  }
}

FAQ

What is the Model Context Protocol?

The Model Context Protocol is a framework for building and managing context-aware applications.

How do I install the TUI?

You can install the TUI by running `bun install` in the project directory.

Can I develop my own MCP server?

Yes! You can create and publish your own MCP server using the provided TUI and development commands.