drio
Open app

MCP Grpcurl

Source

Model Context Protocol (MCP) server to interact with gRPC services using the grpcurl tool

Catalog onlyCatalog onlySTDIO

Overview

MCP Grpcurl is a Model Context Protocol (MCP) server designed to interact with gRPC services using the grpcurl tool, allowing users to perform various operations on gRPC services.

To use MCP Grpcurl, install the grpcurl tool, set up the MCP server, and run the server to invoke methods, list services, or describe service details.

  • Invoke gRPC methods with custom headers and JSON payloads. - List all available gRPC services on the target server. - Describe gRPC services or message types in detail.
  1. Testing and debugging gRPC services.
  2. Interacting with gRPC APIs in a development environment.
  3. Automating gRPC service interactions in CI/CD pipelines.

Add to your AI client

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

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

Claude Code

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

.mcp.json (project root)

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

VS Code (Copilot)

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

.vscode/mcp.json

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

Windsurf

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

~/.codeium/windsurf/mcp_config.json

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

Cline

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

Cline MCP Settings (via UI)

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

FAQ

What are the requirements to use MCP Grpcurl?

You need Go 1.23.0 or later and the grpcurl tool installed on your system.

How do I install grpcurl?

You can install grpcurl by following the instructions on its GitHub page: https://github.com/fullstorydev/grpcurl.

Can I use MCP Grpcurl for production services?

While MCP Grpcurl is primarily designed for development and testing, it can be adapted for production use with proper configuration.