Skip to main content
Glama
larksuite

Feishu/Lark OpenAPI MCP

Official
by larksuite
pkce.ts527 B
import crypto from 'crypto'; export function generateCodeVerifier(): string { return crypto.randomBytes(32).toString('base64url'); } export function generateCodeChallenge(codeVerifier: string): string { return crypto.createHash('sha256').update(codeVerifier).digest('base64url'); } export function generatePKCEPair(): { codeVerifier: string; codeChallenge: string } { const codeVerifier = generateCodeVerifier(); const codeChallenge = generateCodeChallenge(codeVerifier); return { codeVerifier, codeChallenge }; }

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