@Supernova123/Grpc Server
FreeNot checkedMCP server for gRPC — service discovery via server reflection, method invocation, and type schema inspection for AI agents.
About
MCP server for gRPC — service discovery via server reflection, method invocation, and type schema inspection for AI agents.
README
Connect AI agents to any gRPC service — no proto files needed.
Most gRPC services are invisible to AI tools. This MCP server uses gRPC Server Reflection to auto-discover services, methods, and types at runtime, then exposes them as callable tools for Claude, Cursor, and any MCP-compatible agent.
Why This Matters
gRPC powers Kubernetes, Istio, Envoy, and thousands of microservices — but AI agents can't talk to any of them. Until now, you'd need to manually define proto schemas, generate clients, and wire everything together. This server does it automatically: point it at any gRPC endpoint with reflection enabled, and it discovers everything.
Use cases:
- Debug microservices by invoking RPCs directly from Claude
- Inspect live service meshes (Istio, Envoy) without kubectl
- Build AI-powered ops tools that query gRPC health endpoints
- Prototype API integrations without writing client code
- Test gRPC services during development with natural language
Tools
| Tool | Description |
|---|---|
connect_endpoint |
Connect to a gRPC server and auto-discover all services via reflection |
list_services |
List every gRPC service on the connected endpoint |
list_methods |
List all RPC methods for a service (unary, server-stream, client-stream, bidi) |
get_service_descriptor |
Get full service schema: methods, request/response types, streaming modes |
invoke_rpc |
Call any RPC method with a JSON-serialized request body |
health_check |
Standard gRPC Health Checking Protocol (v1) |
disconnect |
Clear cached service data and disconnect |
Quick Start
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"grpc": {
"command": "npx",
"args": ["-y", "@supernova123/grpc-mcp-server"],
"env": {
"GRPC_ENDPOINT": "localhost:50051"
}
}
}
}
Cursor / VS Code
{
"mcp": {
"servers": {
"grpc": {
"command": "npx",
"args": ["-y", "@supernova123/grpc-mcp-server"],
"env": {
"GRPC_ENDPOINT": "localhost:50051"
}
}
}
}
}
Direct
npx @supernova123/grpc-mcp-server
Example Usage
Connect to a gRPC server:
connect_endpoint(endpoint="localhost:50051")Discover available services:
list_services()Inspect a service's methods:
list_methods(service_name="grpc.health.v1.Health")Invoke an RPC:
invoke_rpc( service_name="grpc.health.v1.Health", method_name="Check", request={"service": ""} )
Environment Variables
| Variable | Description | Default |
|---|---|---|
GRPC_ENDPOINT |
Target gRPC endpoint (host:port) | (none — use connect_endpoint) |
GRPC_TIMEOUT_MS |
Request timeout in milliseconds | 10000 |
GRPC_USE_TLS |
Enable TLS connections | false |
Requirements
- Node.js 18+
- Target gRPC server must support gRPC Server Reflection (v1)
Most gRPC servers have reflection enabled in development. For production servers, ensure grpc.reflection.V1Reflection is registered.
How It Works
- Connects to your gRPC endpoint via the reflection API
- Fetches the full service descriptor (services → methods → types)
- Dynamically generates MCP tool definitions from the schema
- Invokes RPCs by serializing JSON requests to protobuf and back
No proto files. No code generation. No compile step.
License
MIT
Installing @Supernova123/Grpc Server
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/friendlygeorge/grpc-mcp-serverFAQ
Is @Supernova123/Grpc Server MCP free?
Yes, @Supernova123/Grpc Server MCP is free — one-click install via Unyly at no cost.
Does @Supernova123/Grpc Server need an API key?
No, @Supernova123/Grpc Server runs without API keys or environment variables.
Is @Supernova123/Grpc Server hosted or self-hosted?
A hosted option is available: Unyly runs the server in the cloud, no local setup required.
How do I install @Supernova123/Grpc Server in Claude Desktop, Claude Code or Cursor?
Open @Supernova123/Grpc Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
by modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
by xuzexin-hzMCP-Agent
A simple, composable framework to build agents using Model Context Protocol by [LastMile AI](https://www.lastmileai.dev)
by lastmile-aiSpring AI MCP Client
Provides auto-configuration for MCP client functionality in Spring Boot applications.
mcp.natoma.ai
A Hosted MCP Platform to discover, install, manage and deploy MCP servers by [Natoma Labs](https://www.natoma.ai)
MCPHub
Website to list high quality MCP servers and reviews by real users. Also provide online chatbot for popular LLM models with MCP server support.
MCP Servers Rating and User Reviews
Website to rate MCP servers, write authentic user reviews, and [search engine for agent & mcp](http://www.deepnlp.org/search/agent)
mkinf
An Open Source registry of hosted MCP Servers to accelerate AI agent workflows.
Compare @Supernova123/Grpc Server with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All ai MCPs
