Model Context Protocol (MCP) server to interact with gRPC services using the grpcurl tool
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"grpcurl-mcp": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
This project is an Model Context Protocol (MCP) server designed to interact with gRPC services using the grpcurl tool. It leverages the grpcurl command-line utility to perform various operations on gRPC services, such as invoking methods, listing services, and describing service details.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in developer-tools
Manage Supabase projects — databases, auth, storage, and edge functions
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
Asynchronous coordination layer for AI coding agents: identities, inboxes, searchable threads, and advisory file leases over FastMCP + Git + SQLite
MCP Security Weekly
Get CVE alerts and security updates for Grpcurl Mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
This project is an Model Context Protocol (MCP) server designed to interact with gRPC services using the grpcurl tool. It leverages the grpcurl command-line utility to perform various operations on gRPC services, such as invoking methods, listing services, and describing service details.
grpcurl tool installed on your systeminstall grpcurl: https://github.com/fullstorydev/grpcurl
Install the package:
go install github.com/wricardo/mcp-grpcurl@latest
Configure Cline by adding the following to your MCP settings:
"mcp-grpcurl": {
"command": "mcp-grpcurl",
"env": {
"ADDRESS": "localhost:8005"
},
"disabled": false,
"autoApprove": []
}
Run the MCP server:
mcp-grpc-client
invoke: Invoke a gRPC method using reflection.
method: Fully-qualified method name (e.g., package.Service/Method).request: JSON payload for the request.headers: (Optional) JSON object for custom gRPC headers.list: List all available gRPC services on the target server.
describe: Describe a gRPC service or message type.
mypackage.MyService).