Skip to main content
Glama

gRPC MCP Server

by Yuki4-dev

sendRequest

Submit gRPC requests to a server by specifying the proto file path, server address, service, method, and request body in JSON format, with optional headers and SSL configuration.

Instructions

Send a request to a gRPC server

Input Schema

NameRequiredDescriptionDefault
addressYesAddress of the gRPC server (e.g., it2.trylion-customer-api.askul-it.com:443)
bodyYesRequest body in JSON format
configNoConfiguration options for the request
headersNoOptional headers to include in the request
methodYesMethod name (e.g., GetAddress)
pathYesPath to the proto file (Full path)
serviceYesService name (e.g., AddressService)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "address": { "description": "Address of the gRPC server (e.g., it2.trylion-customer-api.askul-it.com:443)", "type": "string" }, "body": { "description": "Request body in JSON format", "type": "string" }, "config": { "additionalProperties": false, "description": "Configuration options for the request", "properties": { "SSL": { "description": "Whether to use SSL for the request", "type": "boolean" }, "deadLine": { "description": "Deadline for the request in milliseconds", "type": "number" } }, "type": "object" }, "headers": { "additionalProperties": { "type": "string" }, "description": "Optional headers to include in the request", "type": "object" }, "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", "address", "service", "method", "body" ], "type": "object" }

Other Tools from gRPC MCP Server

Related Tools

    MCP directory API

    We provide all the information about MCP servers via our MCP API.

    curl -X GET 'https://glama.ai/api/mcp/v1/servers/Yuki4-dev/grpc-mcp'

    If you have feedback or need assistance with the MCP directory API, please join our Discord server