We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/JereSalguero30/mcp-server-salesforce'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
require('dotenv').config();
const { createHttpServer } = require('./dist/tools/http-server');
const port = process.env.PORT || 3000; // <- CAMBIO CLAVE AQUÍ
createHttpServer({ port }).then(() => {
console.log('✅ MCP server HTTP listening on port', port);
console.log("USERNAME:", process.env.SALESFORCE_USERNAME);
console.log("PASSWORD:", process.env.SALESFORCE_PASSWORD);
});