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
| Name | Required | Description | Default |
|---|---|---|---|
| app_id | Yes |
Implementation Reference
- codemagic_mcp/tools/apps.py:36-44 (handler)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) - codemagic_mcp/client.py:78-79 (handler)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}")