Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
No arguments |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
analyze_queue | Prompt to analyze current validator queue trends. Returns: A string prompt for LLM analysis of queue trends, including: - Queue length implications - Impact on ETH price and network security - Request for historical context |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get_activation_queue | Get current Ethereum validator activation queue statistics. Returns:
A string containing:
- Current activation queue length (number of validators waiting to activate)
- Total active validators
- Total balance of entering validators in ETH
- Estimated wait time (based on ~900 activations per day) |
get_exit_queue | Get current Ethereum validator exit queue statistics. Returns:
A string containing:
- Current exit queue length (number of validators waiting to exit)
- Total active validators
- Total balance of exiting validators in ETH
- Estimated wait time (based on ~900 exits per day) |
get_validator_status | Get status for a specific Ethereum validator by public key. Args:
pubkey (str): The public key of the validator (48-byte hex string starting with '0x')
Returns:
A string containing:
- Validator public key
- Current status (e.g., active_online, pending, exited)
- Effective balance in ETH
- Activation epoch (if applicable)
- Exit epoch (if applicable) |