loadProto
Load and retrieve content from Protocol Buffer (.proto) files within a specified directory using the MCP server's gRPC-based tools.
Instructions
Load a proto file and return its content
Input Schema
Name | Required | Description | Default |
---|---|---|---|
dir | Yes | Directory containing the proto file (e.g., /path/to/proto) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"dir": {
"description": "Directory containing the proto file (e.g., /path/to/proto)",
"type": "string"
}
},
"required": [
"dir"
],
"type": "object"
}