chromedevtools--chrome-devtools-mcp
e14a74c859
Underscore followed by numbers is not encouraged in the proto style guide. See "Underscores in Identifiers" in https://protobuf.dev/programming-guides/style/. This recently became an issue because we have `list_3p_developer_tools` and `execute_3p_developer_tool` which would have been dis-allowed. This change replaces them with `list3p_developer_tools` and `execute3p_developer_tool` respectively, as suggested by the style guide. This only affects the logged version. The tool name is still the existing one. This transformation is also applied to other similar places, like flag names, tool name in error logging, and tool args. The `tool_name_metrics.json` was manually updated because we never landed the server side change because it was disallowed by proto style check.