We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fefergrgrgrg/cloudflare-api-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
build.js•296 B
#!/usr/bin/env node
var program = require('commander');
var pkg = require('../package.json');
program
.version(pkg.version)
.name('build.js')
.command('web', 'build and deploy web app')
.command('android', 'build android app')
.command('ios', 'build ios app')
.parse(process.argv);