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
BaseCapability.d.ts•433 B
/*
* Copyright (c) 2024, Salesforce, Inc.
* All rights reserved.
* For full license text, see the LICENSE.txt file
*/
/**
* Provide all services with common functionalities.
*/
export interface BaseCapability {
/**
* Use this function to determine whether the respective service functionality is available.
* @returns Returns true when used on a supported device and false otherwise.
*/
isAvailable(): boolean;
}