feat(settings): add MCP registrations endpoint + Coolify volume runbook

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-04 06:38:47 +00:00
parent 1da3587334
commit 394b971856
3 changed files with 140 additions and 0 deletions

View File

@@ -2818,6 +2818,13 @@ async def api_mcp_tools():
return {"tools": tools, "count": len(tools)}
@app.get("/api/settings/mcp/registrations")
async def api_mcp_registrations():
"""List MCP server registrations from host config files."""
from web.mcp_registrations import list_registrations
return list_registrations()
# ── Settings: Tag → Company Mappings ──────────────────────────────
@app.get("/api/settings/paperclip-companies")