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
/**
* The release state for a tool, resource, or prompt.
*/
export enum ReleaseState {
// General Availability (GA)
GA = "ga",
// Non-GA. (Please use this for now, but note it is subject to change) In the future, we may instead introduce BETA, DEV_PREVIEW, etc.
NON_GA = "non-ga"
}
// Toolset that a tool should live under
export enum Toolset {
CORE = 'core',
DATA = 'data',
ORGS = 'orgs',
METADATA = 'metadata',
TESTING = 'testing',
USERS = 'users',
MOBILE = 'mobile',
MOBILE_CORE = 'mobile-core',
AURA_EXPERTS = 'aura-experts',
LWC_EXPERTS = 'lwc-experts',
DEVOPS = 'devops',
CODE_ANALYSIS = 'code-analysis',
OTHER = 'other'
}
// Array of all Toolset names
export const TOOLSETS: Toolset[] = Object.values(Toolset);