Skip to main content
Glama

update_geomi_organization

Modify organization details for your Geomi account, a toolkit for Aptos developers, by specifying the organization ID and new name.

Instructions

Update an Organization for your Geomi account. Geomi is the essential toolkit for Aptos developers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesThe name of the organization to update.
organization_idYesThe organization id to update the organization for.

Implementation Reference

  • The handler function that executes the 'update_geomi_organization' tool, responsible for calling the Geomi service to update an organization.
    execute: async (
      args: { name: string; organization_id: string },
      context: any
    ) => {
      try {
        await recordTelemetry({ action: "update_organization" }, context);
        const geomi = new Geomi(context);
        const organization = await geomi.updateOrganization({
          name: args.name,
          organization_id: args.organization_id,
        });
        return JSON.stringify(organization);
      } catch (error) {
        return `❌ Failed to update organization: ${error}`;
      }
    },
  • The 'updateOrganizationTool' object definition, which registers the tool name, description, parameters, and handler function.
    export const updateOrganizationTool = {
      description:
        "Update an Organization for your Geomi account. Geomi is the essential toolkit for Aptos developers.",
      execute: async (
        args: { name: string; organization_id: string },
        context: any
      ) => {
        try {
          await recordTelemetry({ action: "update_organization" }, context);
          const geomi = new Geomi(context);
          const organization = await geomi.updateOrganization({
            name: args.name,
            organization_id: args.organization_id,
          });
          return JSON.stringify(organization);
        } catch (error) {
          return `❌ Failed to update organization: ${error}`;
        }
      },
      name: "update_geomi_organization",
      parameters: UpdateOrganizationToolScheme,
    };
  • Import of the 'UpdateOrganizationToolScheme', which defines the input parameters schema for the update tool.
    import {
      CreateOrganizationToolScheme,
      UpdateOrganizationToolScheme,
    } from "../types/organization.js";
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states it's an update operation, implying mutation, but lacks details on permissions, side effects, error handling, or response format. This is inadequate for a mutation tool without annotation support.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without redundancy. The second sentence about Geomi provides context but is arguably extraneous; however, it doesn't detract significantly from clarity, making this highly concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral traits (e.g., what 'update' entails, success/error responses), making it insufficient for an agent to use the tool confidently without additional context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema fully documents both parameters ('name' and 'organization_id'). The description adds no additional meaning beyond the schema, such as format constraints or examples, meeting the baseline for high coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Update') and resource ('Organization for your Geomi account'), making the purpose unambiguous. It distinguishes from siblings like 'create_geomi_organization' by specifying it's an update operation, though it doesn't explicitly contrast with other update tools (e.g., 'update_geomi_api_key').

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing an existing organization), exclusions, or comparisons with sibling tools like 'create_geomi_organization' or other update operations, leaving the agent to infer usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

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

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