We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 942eff3 commit 9f0f1a0Copy full SHA for 9f0f1a0
src/services/docs-formatter-service.ts
@@ -50,8 +50,8 @@ export class DocsFormatter {
50
* Normalizes a module name for use as a tool identifier
51
*/
52
normalizeModuleName (name: string): string {
53
- const toolName = `get_api_for-${name.toLowerCase().replace(/[^a-zA-Z0-9_-]/g, '')}`
54
- return toolName.length > 64 ? toolName.slice(0, 63) : toolName
+ const toolName = `${name.toLowerCase().replace(/[^a-zA-Z0-9_-]/g, '')}`
+ return toolName.length > 47 ? toolName.slice(0, 47) : toolName
55
}
56
57
formatModuleSummary (module: ApiModule): string {
0 commit comments