gRPCurl - Command-Line Tool for Testing gRPC Services

gRPCurl is a command-line tool for testing and interacting with gRPC services, offering features like reflection, requests, and response debugging.

Key Features

Command Line

grpcurl is a command-line tool that lets you interact with gRPC servers directly without writing any client code or compiling stubs.

No Stubs

It works without needing generated client code; just provide the proto file or use server reflection to call any gRPC endpoint.

Server Reflection

Supports gRPC server reflection to auto-discover available services and methods without local .proto files.

JSON Requests

Send and receive messages in simple JSON format, making it easy to interact with gRPC services using human-readable input.

Service Listing

Quickly list all available services on a gRPC server to explore what’s exposed and ready for interaction or testing.

TLS Support

Connect to secure gRPC servers with TLS encryption and certificate support for safe communication over networks.

Installation Method

Troubleshoot

Check Reflection

Use Proto

Invalid Format

Missing Fields

Server Reachability

Secure Access

Authentication and TLS

TLS Authentication

Enable secure communication between grpcurl and gRPC server using TLS encryption with optional certificate verification.

Enable TLS

Use -tls to initiate a secure connection. This encrypts data in transit to protect from eavesdropping or tampering. "grpcurl -tls : list"

Skip Verify

Use -insecure if the server uses self-signed or untrusted certificates to skip TLS verification (not recommended in production)."grpcurl -tls -insecure : list "

CA Certificate

Use -cacert to specify a custom CA certificate for verifying server identity against a private or custom certificate authority. "grpcurl -tls -cacert ca.pem : list "

Client Certificate

Use -cert and -key to provide client certificates when mutual TLS (mTLS) is required by the server for authentication."grpcurl -tls -cert client.pem -key client.key : list "

Why Choose grpcurl

Grpcurl is Lightweight, fast, and curl-like gRPC testing made easy

Active Users
12 k+
Supported Scripts
3 k+
Active Users
99 %
Active Users
24 /7

Frequently Asked Questions (FAQS)

Item #1
Scroll to Top