Skip to main content
Glama
larksuite

Feishu/Lark OpenAPI MCP

Official
by larksuite
case-transf.ts415 B
import { ToolNameCase } from '../types'; export function caseTransf(toolName: string, caseType?: ToolNameCase) { if (caseType === 'snake') { return toolName.replace(/\./g, '_'); } if (caseType === 'camel') { return toolName.replace(/\./g, '_').replace(/_(\w)/g, (_, letter) => letter.toUpperCase()); } if (caseType === 'kebab') { return toolName.replace(/\./g, '-'); } return toolName; }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/larksuite/lark-openapi-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server