Developer Resources
All developer resources in one place
From deployment to plugins and the agent ecosystem — everything real and ready
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 中即可免重启热加载!