drio
Open app

mcp-get

Source

Catalog onlyCatalog onlySTDIO

Overview

mcp-get is a command-line tool designed for installing and managing Model Context Protocol (MCP) servers, facilitating smooth integration between large language model applications and various data sources and tools.

To use mcp-get, install it via npm and utilize commands to install, list, and manage MCP servers, connecting them to services like GitHub, Slack, and Google Maps.

  • Installs and manages various MCP servers. - Supports integration with multiple data source tools. - Provides commands for installing, listing, and updating packages.
  1. Integrating AI applications with data management systems.
  2. Creating custom AI workflows that involve external services.
  3. Enhancing chat interfaces with real-time data from multiple sources.

Add to your AI client

Use these steps to connect mcp-get 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-get-michaellatman": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-get-michaellatman"
      ]
    }
  }
}

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-get-michaellatman": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-get-michaellatman"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

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

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-get-michaellatman": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-get-michaellatman"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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