We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AiondaDotCom/mcp-salesforce'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
mcp-salesforce.js•348 B
#!/usr/bin/env node
// Simple wrapper to run the main index.js file
import path from 'path';
import { fileURLToPath } from 'url';
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
// Import and run the main module
const mainModule = path.join(__dirname, '..', 'src', 'index.js');
import(mainModule);