Skip to main content

Definition

Assembly: Microsoft.OData.Mcp.Core.dll Namespace: Microsoft.OData.Mcp.Core.Legacy.Generators Inheritance: System.Enum

Syntax

Microsoft.OData.Mcp.Core.Legacy.Generators.ToolNamingConvention

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

NameValueDescription
PascalCase0Use PascalCase naming (e.g., CreateCustomer, UpdateOrder).
CamelCase1Use camelCase naming (e.g., createCustomer, updateOrder).
SnakeCase2Use snake_case naming (e.g., create_customer, update_order).
KebabCase3Use kebab-case naming (e.g., create-customer, update-order).