Skip to main content
Glama

Lara Translate MCP Server

by translated
exception.ts829 B
class ServerException extends Error { code: number = -32603; constructor(message: string) { super(message); } } class InvalidSessionIdError extends ServerException { code: number = -32600; constructor() { super("Bad Request: No valid session ID provided"); } } class MethodNotAllowedError extends ServerException { code: number = -32600; constructor() { super("Method not allowed"); } } class InvalidCredentialsError extends ServerException { code: number = -32600; constructor() { super("Invalid credentials"); } } class InvalidInputError extends ServerException { code: number = -32600; constructor(message: string) { super(message); } } export { ServerException, InvalidSessionIdError, MethodNotAllowedError, InvalidCredentialsError, InvalidInputError, };

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/translated/lara-mcp'

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