Skip to main content
Glama

get_geomi_applications

Retrieve Geomi Organizations with their projects, applications, and API keys for Aptos blockchain development. Access full node and gas station API keys by filtering applications by service type.

Instructions

Get your Geomi Organizations with their projects and applications and the API Keys. Geomi is the essential toolkit for Aptos developers. Api Keys are secret keys so it is important to keep them safe and secure. To get the full node api keys, you need to get the Applications with a serviceType of "Api". To get the gas station api keys, you need to get the Applications with a serviceType of "Gs".

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The definition and execution handler for the tool 'get_geomi_applications'.
    export const getApplicationsTool = {
      description: `Get your Geomi Organizations with their projects and applications and the API Keys. Geomi is the essential toolkit for Aptos developers. Api Keys are secret keys so it is important to keep them safe and secure.
        To get the full node api keys, you need to get the Applications with a serviceType of "Api".
        To get the gas station api keys, you need to get the Applications with a serviceType of "Gs".`,
      execute: async (args: Record<string, never>, context: any) => {
        try {
          await recordTelemetry({ action: "get_applications" }, context);
          const geomi = new Geomi(context);
          const organizations = await geomi.getApplications();
          return JSON.stringify(organizations);
        } catch (error) {
          return `❌ Failed to get organizations: ${error}`;
        }
      },
      name: "get_geomi_applications",
      parameters: z.object({}),
    };
Behavior3/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 discloses that API Keys are secret and should be kept secure, which is useful behavioral context. However, it doesn't mention authentication requirements, rate limits, pagination, or what happens if no organizations exist. The security warning adds value but leaves other behavioral aspects unspecified.

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

Conciseness3/5

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

The description is three sentences with some redundancy (e.g., mentioning Geomi twice in the first sentence). The first sentence clearly states the purpose, but the second sentence about Geomi being an 'essential toolkit' is promotional rather than functional. The last two sentences about filtering are useful but could be more concise.

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

Completeness3/5

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

Given no annotations, no output schema, and 0 parameters, the description provides adequate context about what data is retrieved and how to interpret it. However, it lacks details on return format (e.g., structure of organizations/projects/applications), error conditions, or authentication needs, leaving gaps for a tool that handles sensitive API keys.

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

Parameters4/5

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

The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately doesn't discuss parameters, maintaining focus on the tool's purpose and usage. This meets the baseline for tools with no parameters.

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 tool retrieves Geomi Organizations along with their projects, applications, and API Keys. It specifies the resource ('Geomi Organizations') and the associated data, but doesn't explicitly differentiate from sibling tools like 'get_specific_aptos_resource' or 'list_aptos_resources' that might also retrieve Geomi-related data.

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

Usage Guidelines3/5

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

The description provides implied usage guidance by explaining how to filter results for specific API key types (full node vs. gas station), but doesn't explicitly state when to use this tool versus alternatives like 'get_specific_aptos_resource' or other Geomi-related tools. No explicit exclusions or prerequisites are mentioned.

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