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
import { createHttpServer } from '@tsmztech/mcp-server-salesforce';
createHttpServer({
port: 3000,
}).then(() => {
console.log('✅ MCP server HTTP listening on port 3000');
console.log("USERNAME:", process.env.SALESFORCE_USERNAME);
console.log("PASSWORD:", process.env.SALESFORCE_PASSWORD);
});