Skip to main content
Glama

delete_geomi_project

Remove a Geomi project from your Aptos development organization to manage your Aptos Build platform resources.

Instructions

Delete a Project for your Geomi Organization. Geomi is the essential toolkit for Aptos developers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
organization_idYesThe organization id to delete the project for.
project_idYesThe project id to delete the project for.

Implementation Reference

  • The handler function that executes the deletion of a project in Geomi.
    execute: async (
      args: { organization_id: string; project_id: string },
      context: any
    ) => {
      try {
        await recordTelemetry({ action: "delete_project" }, context);
        const geomi = new Geomi(context);
        const response = await geomi.deleteProject({
          organization_id: args.organization_id,
          project_id: args.project_id,
        });
        return JSON.stringify(response);
      } catch (error) {
        return `❌ Failed to delete project: ${error}`;
      }
    },
  • The registration of the 'delete_geomi_project' tool.
    export const deleteProjectTool = {
      description:
        "Delete a Project for your Geomi Organization. Geomi is the essential toolkit for Aptos developers.",
      execute: async (
        args: { organization_id: string; project_id: string },
        context: any
      ) => {
        try {
          await recordTelemetry({ action: "delete_project" }, context);
          const geomi = new Geomi(context);
          const response = await geomi.deleteProject({
            organization_id: args.organization_id,
            project_id: args.project_id,
          });
          return JSON.stringify(response);
        } catch (error) {
          return `❌ Failed to delete project: ${error}`;
        }
      },
      name: "delete_geomi_project",
      parameters: DeleteProjectToolScheme,
    };

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/aptos-labs/aptos-npm-mcp'

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