1. Conduid
  2. Developer Tools
  3. Unla
MCP server · Developer Tools

Unla

🧩 MCP Gateway - A lightweight gateway service that instantly transforms existing MCP Servers and APIs into MCP servers with zero code changes. Features Docker deployment and management UI, requiring no infrastructure modifications.

94Excellent

Scored 4 days ago · breakdown

About Unla

Unla is an MCP server published by AmoyLab in the Developer Tools category: 🧩 MCP Gateway - A lightweight gateway service that instantly transforms existing MCP Servers and APIs into MCP servers with zero code changes. Features Docker deployment and management UI, requiring no infrastructure modifications. It has been installed 0 times through Conduid.

The repository has 2.0K stars and 171 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx unla

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Unla

Powered by Claude · Grounded in docs

I know everything about Unla. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v0.10.0v0.10.0 · 4 Aug 2026📦 Unla v0.10.0 Turn your MCP Servers and APIs into MCP endpoints — effortlessly, without modifying the original code. ✨ 特性 支持 MCP 2026 stateless streamable HTTP 新增 ignoreInvalidConfig 配置,支持跳过无效 MCP 配置 下游错误响应新增 isError 标记 🐞 修复 修复 Redis…
v0.9.2v0.9.2 · 21 Jan 2026Full Changelog**: https://github.com/AmoyLab/Unla/compare/v0.9.1...v0.9.2
v0.9.1v0.9.1 · 9 Jan 2026📦 Unla v0.9.1 Turn your MCP Servers and APIs into MCP endpoints — effortlessly, without modifying the original code. ✨ 特性 Gateway 视图模式持久化至本地存储 添加 Gateway 服务基础 URL 配置 新增内部网络白名单功能,默认阻止工具访问并支持配置允许的目标 添加完整的 Prometheus 指标支持(MCP API…
v0.9.0v0.9.0 · 17 Sep 2025📦 Unla v0.9.0 Turn your MCP Servers and APIs into MCP endpoints — effortlessly, without modifying the original code. ✨ 特性 集成 OpenTelemetry 链路追踪,支持 Jaeger 配置,可捕获下游请求与错误 MCP 能力增强:新增日志与资源管理支持;后台定时抓取与缓存能力(可配置刷新间隔与缓存 TTL) Web…
v0.8.6v0.8.6 · 16 Jul 2025📦 Unla v0.8.6 Turn your MCP Servers and APIs into MCP endpoints — effortlessly, without modifying the original code. ✨ 特性 添加前向头部支持 支持透明头部传递 🐞 修复 删除默认投递头部 修复空透明头部问题 删除日志中的头部信息 删除无用文件 防止 Chrome 在搜索和 API 密钥输入中自动填充密码 (#182) 使用运行时直接网关修饰符 (#1)…

README

Unla - MCP Gateway

🚀 Instantly transform your existing MCP Servers and APIs into MCP endpoints — without changing a line of code.

English 简体中文 繁體中文 Release Docs Ask DeepWiki Discord Go Report Card Snyk Security


Note: Unla is under rapid development! We strive to maintain backward compatibility, but it cannot be 100% guaranteed. Please make sure to check version changes carefully when upgrading. Due to the fast iteration, documentation updates may sometimes lag behind. If you encounter any issues, feel free to search or ask for help via Discord or Issues ❤️


✨ What is Unla?

Unla is a lightweight and highly available gateway service written in Go. It enables individuals and organizations to convert their existing MCP Servers and APIs into services compliant with the MCP Protocol — all through configuration, with zero code changes.

https://github.com/user-attachments/assets/69480eda-7aa7-4be7-9bc7-cae57fe16c54

🔧 Core Design Principles

  • ✅ Zero Intrusion: Platform-agnostic, supports deployment on bare metal, VMs, ECS, Kubernetes, etc., without modifying existing infrastructure
  • 🔄 Configuration-Driven: Convert legacy APIs to MCP Servers using YAML configuration — no code required
  • 🪶 Lightweight & Efficient: Designed for minimal resource usage without compromising on performance or availability
  • 🧭 Built-in Management UI: Ready-to-use web interface to simplify setup and reduce operational overhead

🚀 Getting Started

Unla supports a ready-to-run Docker deployment. Full deployment and configuration instructions are available in the docs.

Quick Launch with Docker

Configure environment variables:

export APISERVER_JWT_SECRET_KEY="changeme-please-generate-a-random-secret"
export SUPER_ADMIN_USERNAME="admin"
export SUPER_ADMIN_PASSWORD="changeme-please-use-a-secure-password"

Launch the container:

docker run -d \
  --name unla \
  -p 8080:80 \
  -p 5234:5234 \
  -p 5235:5235 \
  -p 5335:5335 \
  -p 5236:5236 \
  -e ENV=production \
  -e TZ=Asia/Shanghai \
  -e APISERVER_JWT_SECRET_KEY=${APISERVER_JWT_SECRET_KEY} \
  -e SUPER_ADMIN_USERNAME=${SUPER_ADMIN_USERNAME} \
  -e SUPER_ADMIN_PASSWORD=${SUPER_ADMIN_PASSWORD} \
  --restart unless-stopped \
  ghcr.io/amoylab/unla/allinone:latest

Access and Configuration

  1. Access the Web Interface:

    • Open http://localhost:8080/ in your browser
    • Login with the administrator credentials you configured
  2. Add an MCP Server:

Available Endpoints

After configuration, the service will be available at these endpoints:

  • MCP SSE: http://localhost:5235/mcp/user/sse
  • MCP SSE Message: http://localhost:5235/mcp/user/message
  • MCP Streamable HTTP: http://localhost:5235/mcp/user/mcp

Configure your MCP Client with the /sse or /mcp suffix URLs to start using it.

Testing

You can test the service using:

  1. The MCP Chat page in the web interface
  2. Your own MCP Client (recommended)

📖 Read the full guide → Quick Start »


🚀 Core Features

🔌 Protocol & Proxy Capabilities

  • Support for converting RESTful APIs to MCP Server — Client → MCP Gateway → APIs
  • Support proxying MCP services — Client → MCP Gateway → MCP Servers
  • Support for converting gRPC to MCP Server — Client → MCP Gateway → gRPC
  • Support for converting WebSocket to MCP Server — Client → MCP Gateway → WebSocket
  • Support for MCP SSE
  • Support for MCP Streamable HTTP
  • Support for MCP responses including text, images, and audio

🧠 Session & Multi-Tenant Support

  • Persistent and recoverable session support
  • Multi-tenant support
  • Support for grouping and aggregating MCP servers

🛠 Configuration & Management

  • Automatic configuration fetching and seamless hot-reloading
  • Configuration persistence (Disk/SQLite/PostgreSQL/MySQL)
  • Configuration sync via OS Signals, HTTP, or Redis PubSub
  • Version control for configuration

🔐 Security & Authentication

  • OAuth-based pre-authentication support for MCP Servers

🖥 User Interface

  • Intuitive and lightweight management UI

📦 Deployment & Operations

  • Multi-replica service support
  • Docker support
  • Kubernetes and Helm deployment support

📚 Documentation

For more usage patterns, configuration examples, and integration guides, please visit:

👉 https://docs.unla.amoylab.com


📄 License

This project is licensed under the MIT License.

💬 Join Our WeChat Community

Scan the QR code below to add us on WeChat. Please include a note: mcp-gateway, mcpgw or unla.

📈 Star History

Star History Chart

README mirrored from the source repository 4 days ago. The original is authoritative.

Questions

About Unla

How do I install Unla?

Run npx unla, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Unla safe to use with an AI agent?

Its trust score is 94 out of 100 (excellent). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Unla still maintained?

Yes — the latest release is v0.10.0 (4 Aug 2026), and the last commit was 6 months ago. The repository has 2.0K stars and 0 open issues.