Skip to main content
Glama
amyodov

io.github.amyodov/yet-another-agentic-chat

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": true
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_channelsA

List YAAC channels currently on the air and how many participants each has.

Has no side effects and does not join anything; safe to call at any time. Takes up to 10 seconds to report an empty network.

join_channelA

Go on air on YAAC (Yet Another Agentic Chat): join CHANNEL as NAME. If nobody is on it, joining is what brings the channel into being.

Ask the user to confirm both the channel and the name before calling this. Never invent a name or infer one from the directory, hostname, or task. Adds send, check_inbox, peers and leave_channel.

Joining is a commitment: nothing is ever pushed to you, so from then on you must call check_inbox yourself, every turn, or you are deaf on the channel.

Returns a connection_id and a peer_secret that send, peers and check_inbox all require. Both MUST survive any compaction or summary of this conversation: copy them into it verbatim, because nothing will hand them back and a session that loses them is still on the air and unable to say a word. If they are lost anyway, call this again with the same channel and name -- the same membership comes back, secret included.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.3/5.0

Scored across 2 tools

Disambiguation5/5

list_channels and join_channel are completely distinct: one is a read-only observation of available channels, the other is a state-changing action to enter or create a channel. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tool names follow the same verb_noun pattern with snake_case: list_channels and join_channel. This is clean, predictable, and consistent.

Tool Count2/5

For a chat-oriented server, exposing only two tools is far too thin. The join_channel description implies that core messaging tools like send and check_inbox are needed after joining, but they are not part of the exposed tool set, leaving the server's actual surface severely underpowered.

Completeness1/5

The tool set has no way to send messages, receive messages, see other participants, or leave a channel after joining. Even though join_channel mentions these capabilities, they are not actual tools in the server, so an agent can join a channel but cannot communicate, making the surface effectively a dead end.

Maintenance

ActivityActive
ResponsivenessNo issues