Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

Tiger MCP

OCI · GHCR.IO/TIMESCALE/TIGER-CLI:0.21.2 · SCANNED AUG 3

Provides programmatic access to Tiger Cloud services, databases, and documentation.

−1 this week 38 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security0
  • Malware scan not yet available for this package.Unverified
  • CVE data not yet available for this package.Unverified
  • Install-script risk not yet assessed.Unverified
  • Dependency-health data not yet available.Unverified
Provenance & Transparency32
Schema Quality & AI Usability64
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 2262 tokens (~205/item across 11 items; 11 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

oci · ghcr.io/timescale/tiger-cli:0.21.2

# add to Claude Code
claude mcp add timescale-tiger-cli -- docker run --rm -i ghcr.io/timescale/tiger-cli:0.21.2
# add to Codex CLI
codex mcp add timescale-tiger-cli -- docker run --rm -i ghcr.io/timescale/tiger-cli:0.21.2
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "timescale-tiger-cli": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/timescale/tiger-cli:0.21.2"
      ],
      "enabled": true
    }
  }
}
# ~/.hermes/config.yaml
mcp_servers:
  timescale-tiger-cli:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/timescale/tiger-cli:0.21.2"]
// mcp.json
{
  "mcpServers": {
    "timescale-tiger-cli": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/timescale/tiger-cli:0.21.2"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +4
    • Stability: unverified → 0.23 functional
  • 31 Jul 26 −5
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 27 Jul 26 +31
    • Tool coverage: unverified → 100 functional
    • First check of Schema quality: excellent functional
    • First check of Schema quality: fail functional
    • First check of Tool coverage: 100 functional
    • First check of Tool coverage: 100 functional
    • First check of Schema quality: fail functional
  • 26 Jul 26 8

    First indexed and scored.

    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed oci/ghcr.io/timescale/tiger-cli:0.21.2

Provenance none

Ecosystem: oci · Outcome: none

Reason: no_attestation

MCP tools — 11 exposed · ~2,207 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
db_execute_query ~306

Execute SQL queries against a service database. Connects to a PostgreSQL database service in Tiger Cloud and executes the provided SQL query, returning the results with column information, row data, and execution metadata. Multi-statement queries (semicolon-separated) are supported when no parameters are provided. All result sets are returned. By default, statements execute in an implicit transaction that automatically commits on success or rolls back on error. Explicit transactions (opened with BEGIN) must be explicitly committed with COMMIT, or they roll back when the connection closes. Process data in the database, not in your context: aggregate, filter, sort/limit, and join in SQL rather than fetching raw rows. WARNING: Can execute any SQL statement including INSERT, UPDATE, DELETE, and DDL commands. Always review queries before execution.

NameTypeReqDescription
parametersnull|arrayQuery parameters. Values are substituted for $1, $2, etc. placeholders in the query.
pooledbooleanUse connection pooling (if available)
querystringyesPostgreSQL query to execute
rolestringDatabase role/username to connect as
service_idstringyesUnique identifier of the service (10-character alphanumeric string). Use service_list to find service IDs. A read replica set ID is also accepted here — passing one runs the query against that read r…
timeout_secondsintegerQuery timeout in seconds
NameTypeReqDescription
execution_timestringyesExecution time as a human-readable duration string
noticestringPresent only when results were truncated. Actionable guidance for getting the needed data via SQL (aggregate, filter, paginate) instead of re-running the query.
result_setsnull|arrayyesArray of result sets returned. For single-statement queries, this array will contain one element. For multi-statement queries, this array will contain one element per statement.
truncatedbooleanTrue when any result set was truncated to limit the amount of data returned. See notice for guidance.
warningstringPresent when connection pooling was requested for a read replica that has none; the query ran over a direct connection instead.

No examples provided.

db_schema ~282

Display the schema of a service database. Connects to a PostgreSQL/TimescaleDB service in Tiger Cloud and returns its schema as readable text: tables (regular, partitioned, and foreign), views, materialized views, enum types, functions, procedures, indexes, triggers, and TimescaleDB hypertable and continuous aggregate metadata. Only objects the connecting role can access are returned. By default only user-facing schemas and objects are shown; view/routine definitions and object comments are omitted unless requested. The connection is opened in immutable read-only mode.

NameTypeReqDescription
commentsbooleanInclude object comments (COMMENT ON text).
definitionsbooleanInclude full object definitions (view SELECTs, function/procedure bodies).
internalbooleanInclude system schemas (pg_*, information_schema, TimescaleDB internals) and extension-owned objects.
pooledbooleanUse connection pooling (if available)
rolestringDatabase role/username to connect as
schemastringRestrict output to a single schema (namespace). When omitted, all accessible schemas are returned.
service_idstringyesUnique identifier of the service (10-character alphanumeric string). Use service_list to find service IDs. A read replica set ID is also accepted here — passing one introspects that read replica inst…
NameTypeReqDescription
schemastringyesThe database schema rendered as human-readable text, grouped under a SCHEMA header per namespace.
warningstringPresent when connection pooling was requested for a read replica that has none; the schema was read over a direct connection instead.

No examples provided.

service_create ~349

Create a new database service in Tiger Cloud with specified type, compute resources, region, and HA options. The default type of service created depends on the user's plan: - Free plan: Creates a service with shared CPU/memory and the 'time-series' and 'ai' add-ons - Paid plans: Creates a service with 0.5 CPU / 2 GB memory and the 'time-series' add-on WARNING: Creates billable resources.

NameTypeReqDescription
addonsnull|arrayArray of addons to enable for the service. 'time-series' enables TimescaleDB, 'ai' enables AI/vector extensions. Use empty array for PostgreSQL-only.
cpu_memorystringCPU and memory allocation combination. Choose from the available configurations.
namestringHuman-readable name for the service (auto-generated if not provided)
regionnull|stringAWS region where the service will be deployed. Choose the region closest to your users for optimal performance.
replicasintegerNumber of high-availability replicas for fault tolerance. Higher replica counts increase cost but improve availability.
set_defaultbooleanWhether to set the newly created service as the default service. When true, the service will be set as the default for future commands.
waitbooleanWhether to wait for the service to be fully ready before returning. Default is false (recommended). Only set to true if your next steps require connecting to or querying this database. When true, wai…
with_passwordbooleanWhether to include the password in the response and connection string. NEVER set to true unless the user explicitly asks for the password.
NameTypeReqDescription
messagestringyes
password_storagenull|object
serviceobjectyes

No examples provided.

service_fork ~431

Fork an existing database service to create a new independent copy. You must specify a fork strategy: - 'NOW': Fork at the current database state (creates new snapshot or uses WAL replay) - 'LAST_SNAPSHOT': Fork at the last existing snapshot (faster fork) - 'PITR': Fork at a specific point in time (requires target_time parameter) By default: - Name will be auto-generated as '{source-service-name}-fork' - CPU and memory will be inherited from the source service - The forked service will be set as the default service WARNING: Creates billable resources.

NameTypeReqDescription
cpu_memorystringCPU and memory allocation combination. Choose from the available configurations. If not specified, inherits from source service.
fork_strategystringyesFork strategy: 'NOW' creates fork at current state, 'LAST_SNAPSHOT' uses last existing snapshot (faster), 'PITR' allows point-in-time recovery to specific timestamp (requires target_time parameter)
namestringHuman-readable name for the forked service (auto-generated if not provided)
service_idstringyesUnique identifier of the service (10-character alphanumeric string). Use service_list to find service IDs.
set_defaultbooleanWhether to set the newly forked service as the default service. When true, the forked service will be set as the default for future commands.
target_timenull|stringTarget timestamp for point-in-time recovery (RFC3339 format, e.g., '2025-01-15T10:30:00Z'). Only used when fork_strategy is 'PITR'.
waitbooleanWhether to wait for the forked service to be fully ready before returning. Default is false (recommended). Only set to true if your next steps require connecting to or querying this database. When tr…
with_passwordbooleanWhether to include the password in the response and connection string. NEVER set to true unless the user explicitly asks for the password.
NameTypeReqDescription
messagestringyes
password_storagenull|object
serviceobjectyes

No examples provided.

service_get ~92

Get detailed information for a specific database service. Returns connection endpoints, replica configuration, resource allocation, creation time, and status.

NameTypeReqDescription
service_idstringyesUnique identifier of the service (10-character alphanumeric string). Use service_list to find service IDs.
with_passwordbooleanWhether to include the password in the response and connection string. NEVER set to true unless the user explicitly asks for the password.
NameTypeReqDescription
serviceobjectyes

No examples provided.

service_list ~31

List all database services in your Tiger Cloud project. Returns services with status, type, region, and resource allocation.

Input schema present but exposes no named parameters.

NameTypeReqDescription
servicesnull|arrayyes

No examples provided.

service_logs ~237

View logs for a database service. Fetches and displays logs from the specified service. By default, shows the last 100 log entries. Supports filtering by time (via since/until parameters) and node (for services with HA replicas).

NameTypeReqDescription
nodenull|integerSpecific service node to fetch logs from (for services with HA replicas). If not provided, logs from the primary node will be fetched.
service_idstringyesUnique identifier of the service (10-character alphanumeric string). Use service_list to find service IDs.
sincenull|stringFetch logs after this timestamp (RFC3339 format, e.g., '2024-01-15T09:00:00Z'). If not provided, only the tail parameter limits how far back logs are fetched.
tailintegerNumber of log lines to return. Defaults to 100.
untilnull|stringFetch logs before this timestamp (RFC3339 format, e.g., '2024-01-15T10:00:00Z'). If not provided, fetches logs up to the current time.
NameTypeReqDescription
logsnull|arrayyesLog lines ordered from oldest to newest. Each line is prefixed with an RFC3339 timestamp followed by the log message.

No examples provided.

service_resize ~155

Resize a database service by changing its CPU and memory allocation. This tool changes the compute resources allocated to your database service. The service may be temporarily unavailable during the resize operation. WARNING: Creates billable resource changes. Increasing resources will increase costs.

NameTypeReqDescription
cpu_memorystringyesCPU and memory allocation combination. Choose from the available configurations.
service_idstringyesUnique identifier of the service (10-character alphanumeric string). Use service_list to find service IDs.
waitbooleanWhether to wait for the service to be done resizing before returning. Default is false (recommended). Only set to true if your next steps require connecting to or querying this database. When true, w…
NameTypeReqDescription
messagestringyes
resourcesnull|object
statusstringyesCurrent service status after resize operation

No examples provided.

service_start ~121

Start a stopped database service. This operation starts a service that is currently in a stopped/paused state. The service will transition to a ready state and become available for connections.

NameTypeReqDescription
service_idstringyesUnique identifier of the service (10-character alphanumeric string). Use service_list to find service IDs.
waitbooleanWhether to wait for the service to be fully started before returning. Default is false (recommended). Only set to true if your next steps require connecting to or querying this database. When true, w…
NameTypeReqDescription
messagestringyes
statusstringyesCurrent service status after start operation

No examples provided.

service_stop ~119

Stop a running database service. This operation stops a service that is currently running. The service will transition to a stopped/paused state and will no longer accept connections.

NameTypeReqDescription
service_idstringyesUnique identifier of the service (10-character alphanumeric string). Use service_list to find service IDs.
waitbooleanWhether to wait for the service to be fully stopped before returning. Default is false (recommended). Only set to true if your next steps require confirmation that the service is stopped. When true,…
NameTypeReqDescription
messagestringyes
statusstringyesCurrent service status after stop operation

No examples provided.

service_update_password ~84

Update master password for 'tsdbadmin' user of a database service. Takes effect immediately. May terminate existing connections.

NameTypeReqDescription
passwordstringyesThe new password for the 'tsdbadmin' user. Must be strong and secure.
service_idstringyesUnique identifier of the service (10-character alphanumeric string). Use service_list to find service IDs.
NameTypeReqDescription
messagestringyes
password_storagenull|object

No examples provided.