Skip to main content
Glama

apple_revoke_certificate

Revoke Apple developer certificates to invalidate them for app distribution or signing purposes.

Instructions

Revoke a certificate

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
certificateIdYesCertificate ID

Implementation Reference

  • The handler function that performs the certificate revocation by sending a DELETE request to the Apple API.
    handler: async (client, args) => {
      await client.request(`/certificates/${args.certificateId}`, { method: 'DELETE' });
      return { success: true };
    },
  • The Zod schema defining the input for the apple_revoke_certificate tool, requiring a certificateId.
    schema: z.object({
      certificateId: z.string().describe('Certificate ID'),
    }),
  • The registration of the tool with the name 'apple_revoke_certificate'.
    name: 'apple_revoke_certificate',
Install Server

Other Tools

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/mikusnuz/app-publish-mcp'

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