Skip to main content
Glama
kukapay
by kukapay

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

Server capabilities have not been inspected yet.

Tools

Functions exposed to the LLM to take actions

NameDescription
list_spacesB
Fetch a list of available Snapshot spaces.

Parameters:
    None

Returns:
    A formatted string containing space IDs and names.
list_proposalsC
Fetch a list of recent proposals for a given Snapshot space.

Parameters:
    space_id (str): The unique identifier of the Snapshot space (e.g., 'ens.eth').

Returns:
    A formatted string containing details of up to 10 recent proposals.
get_proposal_detailsB
Fetch detailed information for a specific proposal.

Parameters:
    proposal_id (str): The unique identifier of the proposal.

Returns:
    A formatted string containing detailed information about the proposal.

Prompts

Interactive templates invoked by user choice

NameDescription
summarize_proposals Generate a prompt to summarize proposals for a given space. Parameters: space_id (str): The unique identifier of the Snapshot space. Returns: A list of prompt messages to guide the summarization process.

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.3/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: get_proposal_details fetches details for a specific proposal, list_proposals lists recent proposals for a space, and list_spaces lists available spaces. There is no overlap in functionality, making it easy for an agent to select the right tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (get_proposal_details, list_proposals, list_spaces) using snake_case. The naming is predictable and readable, with no deviations in style or convention.

Tool Count3/5

With only 3 tools, the server feels thin for a DAO proposals domain, as it lacks operations like creating, updating, or voting on proposals. While the tools cover basic read functions, the scope suggests more actions would be needed for full workflow support.

Completeness2/5

The toolset is severely incomplete for managing DAO proposals, as it only provides read operations (get and list) without any write capabilities such as creating, updating, deleting, or voting on proposals. This creates significant gaps that will hinder agent workflows in this domain.

Maintenance

ActivityInactive
ResponsivenessNo issues