Skip to main content
Glama

create_geomi_organization

Create a new organization for your Geomi account to manage Aptos blockchain development workflows and API keys.

Instructions

Create a new Organization for your Geomi account. Geomi is the essential toolkit for Aptos developers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesThe name of the organization. Must be between 3 and 32 characters long, with only lowercase letters, numbers, dashes and underscores.

Implementation Reference

  • The handler function for the `create_geomi_organization` tool, which executes the organization creation logic.
    execute: async (args: { name: string }, context: any) => {
      try {
        await recordTelemetry({ action: "create_organization" }, context);
        const geomi = new Geomi(context);
        const organization = await geomi.createOrganization({
          name: args.name,
        });
        return JSON.stringify(organization);
      } catch (error) {
        return `❌ Failed to create organization: ${error}`;
      }
    },
  • The schema used to define the input parameters for the `create_geomi_organization` tool.
    parameters: CreateOrganizationToolScheme,
  • The registration of the `create_geomi_organization` tool definition.
    export const createOrganizationTool = {
      description:
        "Create a new Organization for your Geomi account. Geomi is the essential toolkit for Aptos developers.",
      execute: async (args: { name: string }, context: any) => {
        try {
          await recordTelemetry({ action: "create_organization" }, context);
          const geomi = new Geomi(context);
          const organization = await geomi.createOrganization({
            name: args.name,
          });
          return JSON.stringify(organization);
        } catch (error) {
          return `❌ Failed to create organization: ${error}`;
        }
      },
      name: "create_geomi_organization",
      parameters: CreateOrganizationToolScheme,
    };
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It states this is a creation tool, implying a write operation, but doesn't disclose behavioral traits like authentication requirements, rate limits, side effects, or what happens on success/failure. The description adds minimal context beyond the basic purpose.

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

Conciseness4/5

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

The description is concise with two sentences: the first states the tool's purpose, and the second provides background on Geomi. The second sentence adds context but isn't strictly necessary for tool selection. It's front-loaded with the core functionality.

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?

Given the tool is a write operation with no annotations and no output schema, the description is incomplete. It lacks details on authentication, response format, error handling, or any behavioral context needed for an agent to use it effectively. The background on Geomi doesn't compensate for these gaps.

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 the 'name' parameter. The description doesn't add any parameter-specific information beyond what's in the schema. With high schema coverage, the baseline score of 3 is appropriate as the description doesn't compensate but also doesn't need to.

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 action ('Create a new Organization') and the resource ('for your Geomi account'), with additional context about Geomi's purpose. It distinguishes from siblings like 'update_geomi_organization' by specifying creation vs. update, but doesn't explicitly differentiate from other creation tools (e.g., 'create_geomi_project').

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., authentication), scenarios where it's appropriate, or exclusions. The description only states what it does, not when to use it.

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