Definition
Assembly: Microsoft.OData.Mcp.Core.dll Namespace: Microsoft.OData.Mcp.Core.Legacy.Generators Inheritance: System.EnumSyntax
Summary
Naming conventions for generated tool names.Remarks
Different naming conventions provide flexibility in how tool names are formatted to match organizational standards, programming language conventions, or AI model preferences. Consistent naming helps AI models predict and understand tool functionality.Values
| Name | Value | Description |
|---|---|---|
PascalCase | 0 | Use PascalCase naming (e.g., CreateCustomer, UpdateOrder). |
CamelCase | 1 | Use camelCase naming (e.g., createCustomer, updateOrder). |
SnakeCase | 2 | Use snake_case naming (e.g., create_customer, update_order). |
KebabCase | 3 | Use kebab-case naming (e.g., create-customer, update-order). |