forked from redpanda-data/protoc-gen-go-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
66 lines (53 loc) · 2 KB
/
Copy pathmain.go
File metadata and controls
66 lines (53 loc) · 2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// Copyright 2025 Redpanda Data, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"context"
"fmt"
examplev1 "github.com/05sec/protoc-gen-go-mcp/example/gen/go/proto/example/v1"
"github.com/05sec/protoc-gen-go-mcp/example/gen/go/proto/example/v1/examplev1connect"
"github.com/05sec/protoc-gen-go-mcp/example/gen/go/proto/example/v1/examplev1mcp"
"github.com/mark3labs/mcp-go/server"
)
// Ensure our interface and the official gRPC interface are grpcClient
var (
grpcClient examplev1.ExampleServiceClient
mcpClient = examplev1mcp.ExampleServiceClient(grpcClient)
)
// Ensure our interface and the official connect-go interface are compatible
var (
connectClient examplev1connect.ExampleServiceClient
connectMcpClient = examplev1mcp.ConnectExampleServiceClient(connectClient)
)
func main() {
// Create MCP server
s := server.NewMCPServer(
"Example auto-generated gRPC-MCP",
"1.0.0",
)
srv := exampleServer{}
examplev1mcp.RegisterExampleServiceHandler(s, &srv)
examplev1mcp.ForwardToConnectExampleServiceClient(s, connectClient)
examplev1mcp.ForwardToExampleServiceClient(s, grpcClient)
if err := server.ServeStdio(s); err != nil {
fmt.Printf("Server error: %v\n", err)
}
}
type exampleServer struct {
}
func (t *exampleServer) CreateExample(ctx context.Context, in *examplev1.CreateExampleRequest) (*examplev1.CreateExampleResponse, error) {
return &examplev1.CreateExampleResponse{
SomeString: "HAHA " + in.GetNested().GetNested2().GetNested3().GetOptionalString(),
}, nil
}