shimi-ask
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HOST | No | Bind address (use 0.0.0.0 for Docker or external access) | 127.0.0.1 |
| PORT | No | Port to listen on | 3000 |
| ALLOWED_HOSTS | No | Comma-separated list of allowed Host headers (e.g., your-tunnel.example.com,localhost,127.0.0.1) |
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| ask_questionA | Use when the user asks something that should be answered per the operator’s current instructions. Do not invent facts outside those instructions; if empty/insufficient, say so. |
| set_instructionsA | Use when the operator wants to command how future questions are answered. Replaces full instruction text. |
| get_instructionsA | Read current operator instructions. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct role: reading instructions, asking a question constrained by those instructions, and setting instructions. No overlap in purpose.
All tools follow the same verb_noun snake_case pattern: get_instructions, ask_question, set_instructions. Perfectly consistent.
Three tools is a well-scoped set for a focused instruction-based Q&A server. Each tool earns its place.
The server covers the full lifecycle: read instructions, set instructions, and use them to answer questions. No obvious missing operations for its stated purpose.