Skip to main content
Glama

Memory Bank MCP Server

index.ts550 B
import { NotFoundError, UnexpectedError } from "../errors/index.js"; import { type Response } from "../protocols/index.js"; export const badRequest = (error: Error): Response => ({ statusCode: 400, body: error, }); export const notFound = (resourceName: string): Response => ({ statusCode: 404, body: new NotFoundError(resourceName), }); export const serverError = (error: Error): Response => ({ statusCode: 500, body: new UnexpectedError(error), }); export const ok = (data: any): Response => ({ statusCode: 200, body: data, });

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/alioshr/memory-bank-mcp'

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