Open Source · AGPL-3.0

MakerSNSDeveloper Center

The center of our open-source agent gateway and developer ecosystem. From one-command Docker deployment and standard MCP integration to dynamic Skill plugins and the community agent market — bring your capabilities into the agent workstation.

Quick Start

Developer-first, instant access to the agent ecosystem

From single-host Docker deployment to standard MCP protocol and plug-and-play dynamic Skill plugins

Quickstart: Docker Compose
# 1. 克隆开源网关仓库
git clone https://github.com/makersns/maker-gateway.git
cd maker-gateway

# 2. 一键拉起全栈(网关 + Postgres + Redis + MinIO)
docker compose up -d

# 3. 访问 Web 工作台: http://localhost:18082
Ecosystem: Anthropic MCP
# config.yaml - 声明式接入外部 MCP Server
mcp_servers:
  github:
    command: "npx"
    args: ["-y", "@modelcontextprotocol/server-github"]
    env:
      GITHUB_PERSONAL_ACCESS_TOKEN: "${GITHUB_TOKEN}"

  postgres:
    command: "npx"
    args: ["-y", "@modelcontextprotocol/server-postgres", "postgresql://localhost/mydb"]
Plugin: Dynamic Skill (hot-reload)
---
name: custom-report-generator
description: "自动化生成企业级结构化分析报告"
version: 1.0.0
inputs:
  - name: query
    type: string
    required: true
---

# 执行逻辑放在 scripts/run.py 中即可免重启热加载!

Ready to build your first plugin?

Start with the Quick Start guide and plug your capabilities into the MakerSNS AI workstation in minutes.