Skip to main content
Glama

aga_server_info

Retrieve server information, public keys, portal status, and framework alignment data for the AGA MCP server.

Instructions

Get AGA server info, public keys, portal state, and framework alignment.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The implementation of the 'aga_server_info' tool handler, which returns server status, public keys, and framework alignment info.
    export async function handleServerInfo(_args: Record<string, never>, ctx: ServerContext) {
      return ctx.json({
        server: 'AGA MCP Server',
        version: '2.0.0',
        protocol: 'Attested Governance Artifacts v2.0.0',
        patent: 'USPTO Application No. 19/433,835',
        nist_references: ['NIST-2025-0035', 'NCCoE AI Agent Identity'],
        framework_alignment: {
          spiffe: 'SPIFFE provides workload identity (SVID); AGA binds governance to workload intent',
          nist_sp_800_57: 'Key management aligned with SP 800-57 recommendations',
          nist_ai_rmf: 'AI Risk Management Framework: Govern, Map, Measure, Manage',
        },
        issuer_public_key: pkToHex(ctx.issuerKP.publicKey),
        portal_public_key: pkToHex(ctx.portalKP.publicKey),
        chain_public_key: pkToHex(ctx.chainKP.publicKey),
        chain_initialized: ctx.chainInitialized,
        portal_state: ctx.portal.state,
        verification_tier: ctx.verificationTier,
        measurement_count: ctx.measurementCount,
        uptime_ms: Date.now() - Date.parse(ctx.startTime),
      });
    }
  • src/server.ts:66-71 (registration)
    Registration of the 'aga_server_info' tool in the MCP server instance.
    // 1. aga_server_info (ungoverned)
    server.tool('aga_server_info',
      'Get AGA server info, public keys, portal state, and framework alignment.',
      {},
      async () => handleServerInfo({} as any, ctx),
    );
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 of behavioral disclosure. It only lists what information is retrieved without detailing aspects like authentication requirements, rate limits, error handling, or the format of the returned data. For a tool with no annotation coverage, this leaves critical behavioral traits unspecified.

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 front-loads the core purpose without any wasted words. It directly communicates what the tool does in a structured manner, making it easy to parse and understand quickly.

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 complexity of retrieving multiple types of server information (e.g., public keys, portal state) and the lack of both annotations and an output schema, the description is insufficient. It doesn't explain the return format, potential errors, or how the retrieved data is structured, leaving the agent with incomplete context for proper use.

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 tool has 0 parameters with 100% schema description coverage, so the input schema fully documents the absence of parameters. The description doesn't need to add parameter information, and it appropriately avoids mentioning any, earning a high baseline score for not introducing confusion or redundancy.

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's purpose with specific verbs ('Get') and resources ('AGA server info, public keys, portal state, and framework alignment'), making it easy to understand what the tool does. However, it doesn't explicitly differentiate from the sibling 'get_server_info' tool, which appears to serve a similar general purpose, preventing a perfect score.

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?

The description provides no guidance on when to use this tool versus alternatives. With a sibling tool named 'get_server_info' that likely overlaps in functionality, the absence of any differentiation or context for choosing between them is a significant gap, leaving the agent without clear usage instructions.

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/attestedintelligence/aga-mcp-server'

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