Skip to main content
Glama
hofill
by hofill

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
REQUESTREPO_HOSTNoThe host address of the requestrepo server.requestrepo.com
REQUESTREPO_PORTNoThe port for the requestrepo server.443
REQUESTREPO_TOKENNoOptional auth token. If set, it is used. Otherwise a new session is created.
REQUESTREPO_VERIFYNoWhether to verify SSL certificates.true
REQUESTREPO_PROTOCOLNoThe protocol to use (e.g., https).https
REQUESTREPO_MAX_BYTESNoMaximum bytes for binary fields.65536
REQUESTREPO_ADMIN_TOKENNoOptional admin token used when creating a new session.
REQUESTREPO_DEFAULT_TIMEOUT_SECONDSNoDefault timeout in seconds for operations.30

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
session_infoB

Return session info for the active requestrepo client.

list_requestsC

List captured requests with optional filtering.

wait_for_requestC

Poll for a new request until timeout.

delete_requestC

Delete one request.

delete_all_requestsB

Delete all requests for the current session.

share_requestC

Create a share token for a request.

get_shared_requestC

Resolve a shared request token.

list_dnsB

List DNS records.

add_dnsC

Add a DNS record.

remove_dnsB

Remove DNS records by domain and optional type.

update_dnsC

Replace the full DNS records set.

list_filesB

List all file responses.

get_fileC

Get one file response.

set_fileD

Set one file response.

update_filesC

Replace all file responses.

pingB

Ping the underlying requestrepo websocket connection.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

C2.8/5.0

Scored across 16 tools

Disambiguation4/5

Most tools have distinct purposes, but some potential confusion exists between 'delete_request' and 'delete_all_requests', and 'set_file' and 'update_files' could overlap. The DNS tools (add_dns, list_dns, remove_dns, update_dns) are clearly differentiated by action, and file/request tools generally target different operations.

Naming Consistency5/5

All tools follow a consistent verb_noun naming pattern with snake_case throughout. Examples include 'add_dns', 'list_requests', 'update_files', and 'wait_for_request'. There are no deviations in style or convention across the set.

Tool Count4/5

With 16 tools, the count is slightly high but reasonable for a server handling requests, DNS, and files. It covers multiple domains without being excessive, though it might feel heavy compared to simpler servers. The tools appear well-scoped to the server's purpose.

Completeness4/5

The tool set provides good coverage for request management (list, delete, share, wait), DNS operations (add, list, remove, update), and file handling (get, list, set, update). Minor gaps include no explicit 'get_request' tool and limited session management beyond 'session_info', but agents can work around these with existing tools.

Maintenance

ActivityInactive
ResponsivenessNo issues