Skip to main content
Glama

Dropbox MCP Server

index.ts637 B
#!/usr/bin/env node import DbxServer from './dbx-server.js'; import { config, log } from './config.js'; import { startHealthCheckServer } from './health-check.js'; // Start the health check server if in production if (process.env.NODE_ENV === 'production') { const port = process.env.HEALTH_CHECK_PORT ? parseInt(process.env.HEALTH_CHECK_PORT, 10) : 8080; startHealthCheckServer(port); } // Start the server const server = new DbxServer(); // Run the server server.run().catch((error: Error) => { log.error('Failed to start server:', { error: error.message, stack: error.stack }); process.exit(1); });

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/Albiemark/dbx-mcp-server'

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