Function
list_mcp_servers
(
_auth: AuthContext = Depends(require_mcp_scope),
service: ToolsService = Depends(get_service),
)
Source from the content-addressed store, hash-verified
| 212 | |
| 213 | @router.get("/mcp/servers") |
| 214 | async def list_mcp_servers( |
| 215 | _auth: AuthContext = Depends(require_mcp_scope), |
| 216 | service: ToolsService = Depends(get_service), |
| 217 | ): |
| 218 | return await _run(service.get_mcp_servers) |
| 219 | |
| 220 | |
| 221 | @router.post("/mcp/servers") |
Callers
nothing calls this directly
Tested by
no test coverage detected