getMethodInformation
Retrieve detailed information about specific gRPC methods within a proto file by providing the file path, service name, and method name. Ideal for developers debugging or analyzing gRPC services.
Instructions
Get information about methods in a proto file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
method | Yes | Method name (e.g., GetAddress) | |
path | Yes | Path to the proto file (Full path) | |
service | Yes | Service name (e.g., AddressService) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"method": {
"description": "Method name (e.g., GetAddress)",
"type": "string"
},
"path": {
"description": "Path to the proto file (Full path)",
"type": "string"
},
"service": {
"description": "Service name (e.g., AddressService)",
"type": "string"
}
},
"required": [
"path",
"service",
"method"
],
"type": "object"
}