lokalise-mcp
Version:
The Lokalise MCP Server brings Lokalise's localization power to Claude and AI assistants—manage projects, keys, and translations by chat.
15 lines (14 loc) • 563 B
TypeScript
/**
* HTTP Transport Module
* Handles HTTP-based MCP server communication with Express
*/
import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
import { StreamableHTTPServerTransport } from "@modelcontextprotocol/sdk/server/streamableHttp.js";
export interface HttpTransportConfig {
port?: number;
mcpEndpoint?: string;
}
/**
* Initialize and connect HTTP transport to MCP server
*/
export declare function initializeHttpTransport(server: McpServer, transportConfig?: HttpTransportConfig): Promise<StreamableHTTPServerTransport>;