Automic VaultAutomic Vault

brew

Installer grpcurl avec Homebrew, apk, dnf, MacPorts, Nix, scoop, winget

Consultez les chemins d'installation, exécutables, métadonnées et notes de sécurité de grpcurl pour les workflows d'agents IA.

installation

Commandes d'installation supplémentaires

macOS

Homebrewvérifié · 100%
brew install grpcurl

local Homebrew formula metadata

MacPortsvérifié · 94%
sudo port install grpcurl

MacPorts ports tree · devel/grpcurl/Portfile · Source: api.github.com

Linux

Alpine Linux apkvérifié · 92%
sudo apk add grpcurl

Alpine Linux edge package indexes · grpcurl · Source: dl-cdn.alpinelinux.org

Fedora dnfvérifié · 92%
sudo dnf install grpcurl

Fedora Rawhide package metadata · grpcurl · Source: dl.fedoraproject.org

Nixvérifié · 92%
nix profile install nixpkgs#grpcurl

nixpkgs package indexes · pkgs/by-name/gr/grpcurl/package.nix · Source: api.github.com

Windows

Scoopvérifié · 92%
scoop install main/grpcurl

Scoop official bucket manifest trees · bucket/grpcurl.json · Source: api.github.com

Windows Package Managervérifié · 92%
winget install --id fullstorydev.grpcurl -e

Windows Package Manager source index · fullstorydev.grpcurl · Source: cdn.winget.microsoft.com

aperçu

Résumé du paquet

Like cURL, but for gRPC

historique

Historique du projet et usages

grpcurl is a command-line tool for interacting with gRPC servers, deliberately analogous to curl for HTTP. It makes binary protobuf-based RPCs scriptable by accepting and emitting human-friendly JSON while using gRPC schemas to marshal requests.

Historique du projet

The official GitHub repository was created in 2017, and the first listed GitHub release was v1.0.0 in September 2018. FullStory's engineering blog later described grpcurl as a tool for querying gRPC servers similarly to how curl queries HTTP endpoints.

grpcurl emerged to fill a protocol gap: ordinary curl cannot conveniently invoke gRPC because gRPC uses HTTP/2 plus protobuf binary messages. The README explains that grpcurl uses server reflection, proto source files, or protoset descriptor files to discover schemas and translate JSON request bodies to protobuf messages.

The repository also provides a Go library package for building other tools that dynamically invoke gRPC endpoints, making grpcurl both a user-facing CLI and a reusable implementation example for reflection-driven gRPC tooling.

Historique d'adoption

grpcurl adoption follows gRPC adoption. As teams moved internal APIs to gRPC, they needed a quick shell-native way to list services, describe methods, send requests, add metadata, test TLS and mTLS, and script health or debugging calls.

FullStory's blog noted that grpcurl implementation code helped power other dynamic gRPC tools such as Uber's Prototool. The README also lists Homebrew, Docker, Snap, Go install, and third-party packages, showing broad packaging interest around a small CLI.

The tool became a common recommendation because it preserves the Unix habit of direct command-line API inspection while respecting gRPC's schema-driven binary protocol.

Modes d'utilisation

Typical usage is `grpcurl HOST:PORT list`, `grpcurl HOST:PORT describe SERVICE`, or `grpcurl -d '{...}' HOST:PORT package.Service/Method`. Users can add metadata with `-H`, use plaintext or TLS, and feed JSON from stdin with `-d @`.

When a server supports gRPC reflection, grpcurl can discover services dynamically. Without reflection, users provide `.proto` sources or compiled protoset files so grpcurl can encode and decode messages correctly.

grpcurl supports unary and streaming RPCs, including interactive bidirectional streaming from a terminal. That makes it useful for smoke tests, local development, CI checks, and quick production debugging when paired with appropriate credentials and network access.

Pourquoi les passionnés de paquets s'y intéressent

grpcurl is one of those packages that earns its place by being exactly the missing CLI. It lets package-manager users install a single binary and immediately inspect a gRPC service without writing a generated client.

It is also an archetypal Go-distributed developer tool: upstream releases binaries, Homebrew packages it, Docker images exist, and `go install` remains a source path. That redundancy is useful because grpcurl is often needed inside CI images and ephemeral debugging shells.

For API tooling, grpcurl made gRPC feel less opaque to developers raised on curl, jq, and shell pipelines. Its JSON bridge is not the wire format; it is the human interface that makes the protobuf wire format tolerable at a prompt.

Chronologie

  • 2017: The grpcurl GitHub repository was created.
  • 2018: v1.0.0 was published on GitHub releases.
  • 2019: FullStory published 'The tale of gRPCurl', explaining the curl-for-gRPC motivation and related tooling reuse.
  • 2020s: The README documents Homebrew, Docker, Snap, Go install, and other packaging routes.

Related projects

  • gRPC is the RPC framework grpcurl targets.
  • Protocol Buffers provide the message and descriptor model grpcurl uses for JSON-to-binary translation.
  • grpcui is a browser UI built as a companion to grpcurl.
  • gRPC server reflection lets grpcurl discover schemas directly from a running service.
  • Prototool is cited by FullStory as another dynamic gRPC tool that used grpcurl implementation code.

posture de sécurité

Niveau de risque : vert

narrow executable package without higher-risk signals.

Classificateur de risque

risque vert · confiance faible · appliance

Pourquoi

  • narrow executable package without higher-risk signals

Signaux

  • metadata:no-higher-risk-signals

Comportement d'installation

  • Aucun hook post-install Homebrew n’est enregistré dans les métadonnées de formule.
  • Les métadonnées de bottle Homebrew sont disponibles pour 8 plateformes.
  • Les métadonnées de compilation listent 1 dépendances de compilation.

Revue recommandée

Avant une utilisation sans surveillance par un agent, vérifiez si l'outil lit des identifiants en clair, écrit un état distant, publie des artefacts ou lance des plugins.

exécutables

Exécutables installés

CommandeTypeExpositionNote
grpcurlcliexécutable global

fraîcheur

Version et fraîcheur

Ces signaux séparent l'âge de génération de la page, l'activité du gestionnaire de paquets et la comparaison avec les versions amont. Un retard de version n'est signalé que lorsqu'une URL de preuve et des versions comparables sont présentes.

page générée2026-07-25
version du gestionnaire1.9.3
gestionnaire mis à jour2026-06-15
données localesOK
amontà jour
dernière version détectéev1.9.3

https://github.com/fullstorydev/grpcurl

  • OKAucun avertissement de fraîcheur n'a été généré.

métadonnées d'installation

Métadonnées du paquet

Clé du paquetbrew:grpcurl
Version1.9.3
Gestionnaire de paquetsHomebrew
Page du gestionnaire de paquetshttps://formulae.brew.sh/formula/grpcurl
Page d'accueilhttps://www.fullstory.com/resources/content/fullstory-engineering-blog/
Dépôthttps://github.com/fullstorydev/grpcurl
Docs amonthttps://github.com/fullstorydev/grpcurl#readme
LicenceMIT
Archive sourcehttps://github.com/fullstorydev/grpcurl/archive/refs/tags/v1.9.3.tar.gz
Dernière mise à jour2026-06-15T10:20:17-04:00
Pulseupdated
Dépendances de compilationgo
Bouteilledisponible (sur arm64_linux, arm64_sequoia, arm64_sonoma, arm64_tahoe, arm64_ventura, sonoma, ventura, x86_64_linux)
post-install Homebrewnon défini
Serviceaucun déclaré

faits du registre

Détails de la base source

Source DatabaseHomebrew formula API
Taphomebrew/core
Full Namegrpcurl
Version Scheme0
Revision0
Head VersionHEAD
Bottle Stable Root URLhttps://ghcr.io/v2/homebrew/core
Deprecatedno
Disabledno
Keg Onlyno
URL Keys
  • head
  • stable

correspondances dans les bases sources

Autres enregistrements de gestionnaires de paquets

Les correspondances proviennent d’index externes de gestionnaires de paquets et restent séparées des liens de paquets Automic Vault locaux.

Nix95%

grpcurl

nix profile install nixpkgs#grpcurl
  • normalized package name match
  • Correspondance par : Grpcurl
nixpkgs package indexes · api.github.com · nixpkgs package indexes: pkgs/by-name/gr/grpcurl/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
apk95%

grpcurl 1.9.3-r13

CLI tool to interact with gRPC servers

https://github.com/fullstorydev/grpcurl

sudo apk add grpcurl
  • License: MIT
  • Architecture: x86_64
  • Source Package: grpcurl
  • 1 Dépendances
  • 1 fournit
  • normalized package name match
  • Correspondance par : Grpcurl
Alpine Linux edge package indexes · dl-cdn.alpinelinux.org · Alpine Linux edge package indexes: grpcurl from https://dl-cdn.alpinelinux.org/alpine/edge/testing/x86_64/APKINDEX.tar.gz
dnf95%

grpcurl 1.9.3-8.fc44

Like cURL, but for gRPC: Command-line tool for interacting with gRPC servers

https://github.com/fullstorydev/grpcurl

sudo dnf install grpcurl
  • License: Apache-2.0 AND BSD-3-Clause AND MIT
  • Category: Unspecified
  • Architecture: x86_64
  • Source Package: grpcurl
  • 3 Dépendances
  • 2 fournit
  • normalized package name match
  • Correspondance par : Grpcurl
Fedora Rawhide package metadata · dl.fedoraproject.org · Fedora Rawhide package metadata: grpcurl from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/e5ca8ce900cd68f5419e1c39ae517343100b306336cbaeb70a3c153121d95094-primary.xml.zst
MacPorts95%

grpcurl

sudo port install grpcurl
  • normalized package name match
  • Correspondance par : Grpcurl
MacPorts ports tree · api.github.com · MacPorts ports tree: devel/grpcurl/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
Scoop95%

main/grpcurl

scoop install main/grpcurl
  • normalized package name match
  • Correspondance par : Grpcurl
Scoop official bucket manifest trees · api.github.com · Scoop official bucket manifest trees: bucket/grpcurl.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1
winget95%

fullstorydev.grpcurl

winget install --id fullstorydev.grpcurl -e
  • normalized package name match
  • Correspondance par : Grpcurl
Windows Package Manager source index · cdn.winget.microsoft.com · Windows Package Manager source index: fullstorydev.grpcurl from https://cdn.winget.microsoft.com/cache/source.msix

piste source

Généré depuis les données du dépôt

Cette page est servie par av-web depuis l'artéfact SQLite privé des paquets généré par scripts/generate-pkg-sqlite.py.

Sources utilisées

  • Geiger risk classifier
  • Nucleus package database
  • av.db category and tag curation
  • cross-ecosystem install command graph
  • curated package history
  • external package-manager database matches
  • package relationship graph
  • package version freshness
  • package-page enrichment