Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
create_topologyB

Build an in-memory Packet Tracer topology from devices and links.

Each device needs id (or name), kind (router|switch|pc|server|laptop), and optionally model, interfaces, coordinates, and config. Each link needs a_device, a_port, b_device, b_port, optional cable.

set_device_configB

Push an IOS-style config onto a device in the in-memory topology.

generate_pktB

Serialize the in-memory topology to a Twofish-encrypted .pkt file.

generate_graded_activityC

Serialize a .pka activity with scored IP addressing and routing criteria.

inspect_pktA

Parse an existing .pkt or .pka file into a readable summary (offline).

validate_current_topologyA

Run offline validation: duplicate IPs, OSPF area mismatches, DHCP overlap.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.5/5.0

Scored across 6 tools

Disambiguation5/5

Each tool targets a distinct operation: validation, activity generation, topology creation, configuration, serialization, and parsing. No overlapping purposes; even the two generate tools differ in output format (.pka vs .pkt).

Naming Consistency5/5

All tools follow a consistent snake_case verb_noun pattern (validate_current_topology, generate_graded_activity, create_topology, etc.). The naming is predictable and readable.

Tool Count5/5

Six tools is well-scoped for a Packet Tracer topology server, covering creation, validation, configuration, export, and inspection without redundancy or bloat.

Completeness4/5

Core workflows are covered: create, validate, configure, export, and inspect. Minor gaps like explicitly listing devices or removing devices/links exist, but agents can work around them through create and set operations.

Maintenance

ActivityMaintained
ResponsivenessNo issues