We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tas1337/mcp-a2a-ap2-im-hungry'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
// =============================================================================
// TYPES
// =============================================================================
// Type aliases + re-export interfaces for backwards compatibility.
// =============================================================================
export type ServiceType = 'doordash' | 'ubereats' | 'grubhub';
export type PaymentMethod = 'credit_card' | 'debit_card' | 'paypal' | 'apple_pay' | 'google_pay' | 'digital_wallet';
export type PaymentStatus = 'pending' | 'processing' | 'completed' | 'failed' | 'refunded' | 'cancelled';
export type MandateAction = 'payment' | 'refund';
// Re-export all interfaces so existing imports still work
export * from './interfaces.js';