Skip to main content
Glama

Cashfree MCP Server

Official
by cashfree
copy-openapi-json.cjs605 B
// Copy all JSON files from src/openapi to dist/openapi after tsc build // Usage: node scripts/copy-openapi-json.cjs const fs = require('fs'); const path = require('path'); const srcDir = path.join(__dirname, '../src/openapi'); const distDir = path.join(__dirname, '../dist/openapi'); if (!fs.existsSync(distDir)) { fs.mkdirSync(distDir, { recursive: true }); } const files = fs.readdirSync(srcDir); for (const file of files) { if (file.endsWith('.json')) { const srcPath = path.join(srcDir, file); const destPath = path.join(distDir, file); fs.copyFileSync(srcPath, destPath); } }

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/cashfree/cashfree-mcp'

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