Skip to main content
Glama

SFCC Development MCP Server

by taurgis
http-client.js632 B
/** * Mock for BaseHttpClient */ export class BaseHttpClient { constructor(baseUrl) { this.baseUrl = baseUrl; this.logger = { debug: jest.fn(), info: jest.fn(), warn: jest.fn(), error: jest.fn(), }; } async makeRequest() { return { data: 'mocked' }; } async get() { return { data: 'mocked' }; } async post() { return { data: 'mocked' }; } async put() { return { data: 'mocked' }; } async patch() { return { data: 'mocked' }; } async delete() { return { data: 'mocked' }; } async handleAuthError() { // Mock implementation } }

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/taurgis/sfcc-dev-mcp'

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