Skip to main content
Glama
larksuite

Feishu/Lark OpenAPI MCP

Official
by larksuite
safe-json-parse.ts201 B
export function safeJsonParse<T>(str: string | undefined | null, fallback: T): T { if (!str) { return fallback; } try { return JSON.parse(str); } catch (e) { return fallback; } }

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