
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@grulex/grpc-invoke-mcp
Advanced tools
grpc-invoke-mcp is an MCP server for calling gRPC methods from AI agents like Claude Code, Codex, Cursor, and other MCP-compatible tools.
It gives agents a simple way to inspect gRPC APIs and invoke unary RPCs using either server reflection or local .proto files. This is useful when you want an agent to explore services, understand request and response schemas, make real gRPC calls, and test gRPC integrations during agent-driven development without writing one-off scripts.
.proto filesRun the server with npx:
npx -y @grulex/grpc-invoke-mcp@latest
The package downloads a platform-specific grpc-invoke-mcp binary during installation.
Project config file: .mcp.json
{
"mcpServers": {
"grpc-invoke": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@grulex/grpc-invoke-mcp@latest"]
}
}
}
Optional CLI setup:
claude mcp add --transport stdio grpc-invoke -- npx -y @grulex/grpc-invoke-mcp@latest
User config file: ~/.codex/config.toml
[mcp_servers.grpc-invoke]
command = "npx"
args = ["-y", "@grulex/grpc-invoke-mcp@latest"]
Optional CLI setup:
codex mcp add grpc-invoke -- npx -y @grulex/grpc-invoke-mcp@latest
Project config file: .cursor/mcp.json
{
"mcpServers": {
"grpc-invoke": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@grulex/grpc-invoke-mcp@latest"]
}
}
}
You can also install it globally in ~/.cursor/mcp.json.
grpc_describeUse this tool to inspect services, methods, and message types.
Common use cases:
.proto filesgrpc_callUse this tool to invoke unary gRPC methods with a JSON request body.
Common use cases:
localhost:50051 using reflection."helloworld.Greeter/SayHello."helloworld.Greeter/SayHello on localhost:50051 with { \"name\": \"World\" }."package.Service/Method using proto_files and import_paths instead of reflection."This package exposes an MCP server over stdio. Your agent starts it locally and discovers tools such as:
grpc_describe for schema inspectiongrpc_call for unary RPC invocationUnder the hood, the npm package launches a native grpc-invoke-mcp binary bundled at install time. The binary supports:
.proto definitionsThe installer currently targets:
npx cannot start the serverMake sure Node.js and npx are installed and available in your PATH.
The npm package downloads a release artifact during installation, so your machine needs network access to GitHub Releases.
If the target server does not expose gRPC reflection, use local .proto files and import_paths instead.
Check the target host, port, TLS settings, and whether the server expects plaintext or TLS.
Confirm the config file is in the right location for your client, restart the client if needed, and verify the server appears in the MCP list or tools panel.
If you work with gRPC services, this MCP server lets AI agents inspect and call those services directly. Instead of translating API details by hand, you can let Claude Code, Codex, Cursor, or other MCP-compatible agents explore the contract and execute safe, targeted requests for debugging, integration work, API discovery, and gRPC testing in agent-driven development workflows.
MIT
FAQs
MCP server for describing and invoking gRPC methods
We found that @grulex/grpc-invoke-mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.