UNPKG

lynkr

Version:

Self-hosted LLM gateway and tier-routing proxy for Claude Code, Cursor, and Codex. Routes across Ollama, AWS Bedrock, OpenRouter, Databricks, Azure OpenAI, llama.cpp, and LM Studio with prompt caching, MCP tools, and 60-80% cost savings.

35 lines (32 loc) 544 B
const { loadConfiguredServers, listServers, getServer, ensureClient, getClient, listClients, } = require("./registry"); const { isSandboxEnabled, runSandboxProcess, ensureSession, listSessions, releaseSession, } = require("./sandbox"); function initialiseMcp() { loadConfiguredServers(); } module.exports = { initialiseMcp, loadConfiguredServers, listServers, getServer, ensureClient, getClient, listClients, isSandboxEnabled, runSandboxProcess, ensureSession, listSessions, releaseSession, };