Skip to main content
Glama

delete_app

Remove an application from the Codemagic CI/CD platform by specifying its application ID to manage your project portfolio.

Instructions

Delete an application from Codemagic.

Args: app_id: The Codemagic application ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
app_idYes

Implementation Reference

  • The MCP tool handler for 'delete_app'. It utilizes the CodemagicClient to perform the deletion.
    @mcp.tool(annotations=ToolAnnotations(destructiveHint=True))
    async def delete_app(app_id: str) -> Any:
        """Delete an application from Codemagic.
    
        Args:
            app_id: The Codemagic application ID.
        """
        async with CodemagicClient() as client:
            return await client.delete_app(app_id)
  • The underlying client method that performs the API call to delete an app.
    async def delete_app(self, app_id: str) -> Any:
        return await self._delete(f"/apps/{app_id}")

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