开发资源
开发资源一站直达
从部署接入到插件与智能体生态,全部真实可用
快速上手
开发者优先,极速接入 Agent 生态
从单机 Docker 极速部署,到标准 MCP 协议与动态 Skill 插件即插即用
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 中即可免重启热加载!