We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/kodey-ai/salesforce-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
ApexTarget2.cls•242 B
public class ApexTarget2 {
public static boolean doSomething() {
Integer i = 0;
for (i = 0; i < 10; i++) {
Account[] accs = [SELECT Name FROM Account WITH SYSTEM_MODE];
}
return false;
}
}