GetClientInfo returns the MCP client information to use when initializing MCP connections. This provides a consistent way for all proxy implementations to report client information.
()
| 9 | // GetClientInfo returns the MCP client information to use when initializing MCP connections. |
| 10 | // This provides a consistent way for all proxy implementations to report client information. |
| 11 | func GetClientInfo() mcp.Implementation { |
| 12 | return mcp.Implementation{ |
| 13 | Name: "coder/aibridge", |
| 14 | Version: buildinfo.Version(), |
| 15 | } |
| 16 | } |