OpenTTT-MCP
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": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| pot_generateB | Generate a Proof of Time for a transaction. Returns potHash, timestamp, stratum, and GRG integrity shards. |
| pot_verifyC | Verify a Proof of Time using its hash and GRG shards. Returns validity, mode (turbo/full), and timestamp. |
| pot_queryB | Query Proof of Time history from local log and on-chain subgraph. |
| pot_statsB | Get PoT statistics: total swaps, turbo/full counts, and turbo ratio for a given period. |
| pot_healthB | Check PoT system health: time source status, subgraph sync, server uptime, and current mode. |
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 5 tools
Each tool has a clearly distinct purpose: generate creates a new Proof of Time, health checks system status, query retrieves history, stats provides analytics, and verify validates existing proofs. There is no overlap or ambiguity between these functions.
All tools follow a consistent 'pot_' prefix with descriptive action suffixes (generate, health, query, stats, verify), using snake_case uniformly. This pattern is predictable and enhances readability.
With 5 tools, this server is well-scoped for managing Proof of Time operations. Each tool serves a specific, necessary function without redundancy, fitting a typical range for a focused domain.
The toolset provides complete coverage for the Proof of Time domain: creation (generate), verification (verify), monitoring (health), historical access (query), and analytics (stats). There are no obvious gaps, supporting full lifecycle management.