Skip to main content
Glama
steffensbola

Salesforce MCP Server

by steffensbola
debug-log.ts502 B
// Debug logging helper - only logs when DEBUG is enabled export const debugLog = (message: string): void => { if (process.env.DEBUG === 'true' || process.env.NODE_ENV === 'development') { console.log(message); // Use stderr to avoid interfering with MCP protocol } }; export const errorLog = (...args: unknown[]): void => { if (process.env.DEBUG === 'true' || process.env.NODE_ENV === 'development') { console.error(...args); // Use stderr to avoid interfering with MCP protocol } };

Latest Blog Posts

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/steffensbola/salesforce-mcp-ts'

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