TimeBase MCP
OfficialServer 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
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_timebase_instancesA | List configured TimeBase server instances. |
| get_server_configurationA | Get the MCP server runtime configuration, some TB server configuration fields may be undefined or have default value until the first connection is established. |
| get_timebase_statusA | Get TimeBase version, license, and runtime environment. Limited TimeBase server versions support. |
| list_timebase_activityA | List active cursors, loaders, connections, and locks. Limited TimeBase server versions support. |
| get_timebase_activity_detailA | Get details for one cursor, loader, connection, or lock. Limited TimeBase server versions support. |
| list_streamsA | List available TimeBase streams with their descriptions |
| get_stream_schemaA | Get the schema of a specific stream |
| get_stream_time_rangeB | Get the time range of a specific stream in UTC |
| list_stream_spacesA | List spaces for a specific TimeBase stream |
| get_stream_space_time_rangeA | Get the time range of a specific stream space in UTC |
| get_stream_symbolsB | Get the symbols of a specific stream |
| get_stream_messagesA | Get the first or last N messages from a stream |
| execute_queryB | Execute a TimeBase QQL query |
| compile_queryA | Compile TimeBase QQL query. Returns parser-level diagnostics only (not full semantic/logical validation). error_token is the first unexpected token, which may be after the actual root cause. |
| list_qql_functionsA | List QQL function signatures supported by the connected TimeBase server |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| stream_catalog | Resource listing streams and descriptions. |
TDQS
Scored across 15 tools
Most tools map cleanly to distinct resources and actions: streams, spaces, activity, QQL functions, and queries are all clearly separated. The only mild ambiguity is between get_server_configuration and get_timebase_status, though their descriptions clarify one is MCP runtime configuration and the other is TimeBase server status.
The tool names follow a consistent snake_case verb_noun pattern, with list_ for enumeration and get_ for single-resource retrieval. get_server_configuration is a slight semantic outlier because it refers to the MCP server runtime rather than the TimeBase server, breaking the otherwise predictable pattern.
15 tools is at the upper end of the well-scoped range, but each tool covers a distinct facet of TimeBase: instance discovery, status, activity, stream metadata, messages, and QQL query support. There is no obvious redundancy or padding.
The tool set thoroughly covers the read/query surface: streams, schemas, time ranges, spaces, symbols, messages, QQL compilation/execution, and server functions. However, there are no write or control operations such as creating/deleting streams, writing messages, or canceling active activity, so it is not a full TimeBase administration surface.