list_projects
Retrieve all projects from the Waldur MCP Server to manage and organize cloud resources efficiently.
Instructions
List all projects
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/waldur_mcp_server/server.py:73-76 (handler)The handler and registration for the 'list_projects' tool. It is a simple wrapper that calls the Waldur API's projects_list function asynchronously using the authenticated client.@mcp.tool() async def list_projects() -> list[Project]: """List all projects""" return await projects_list.asyncio(client=client)