tokencast
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| estimate_costB | Estimate Anthropic API token costs for a development plan before execution |
| get_calibration_statusB | Get calibration health and accuracy metrics for cost estimates |
| get_cost_historyC | Query historical cost estimation records and actuals |
| report_sessionC | Report actual session cost to improve future calibration |
| report_step_costA | Record the cost of a completed pipeline step. Costs accumulate per step and are flushed when report_session is called. |
| disable_telemetryA | Permanently disable anonymous telemetry. Creates ~/.tokencast/no-telemetry file. Use this to opt out of usage data collection. |
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 6 tools
Each tool targets a distinct concern: telemetry opt-out, cost estimation, calibration metrics, historical queries, and cost reporting at different granularities. No two tools overlap in purpose or action.
All tool names follow a consistent verb_noun pattern in lowercase snake_case (disable_telemetry, estimate_cost, get_calibration_status, get_cost_history, report_session, report_step_cost). The naming style is uniform and predictable.
Six tools is well-scoped for a cost estimation and calibration server. Each tool contributes a necessary function without redundant or bloated additions.
The toolset covers the essential workflow: estimate costs, report actuals, inspect calibration, and query history. Minor gaps exist (e.g., no way to enable telemetry after disabling, no per-estimate detail retrieval), but they do not break the core usage flow.