Skip to main content
Glama

list_apps

View all applications in your Codemagic CI/CD account to manage builds, artifacts, and configurations from within Claude.

Instructions

List all applications in your Codemagic account.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The MCP tool definition and handler for 'list_apps', which calls the underlying client method.
    async def list_apps() -> Any:
        """List all applications in your Codemagic account."""
        async with CodemagicClient() as client:
            return await client.list_apps()
  • The actual implementation of the list_apps logic within the CodemagicClient.
    async def list_apps(self) -> Any:
        data = await self._get("/apps")
        apps = data.get("applications", data) if isinstance(data, dict) else data
        if isinstance(apps, list):
            return [self._trim_app(a) for a in apps]
        return apps
  • The register function where the 'list_apps' tool is registered with the FastMCP server.
    def register(mcp: FastMCP) -> None:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/AgiMaulana/CodemagicMcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server