|
| 1 | +{ |
| 2 | + "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json", |
| 3 | + "name": "io.github.timescale/tiger-cli", |
| 4 | + "title": "Tiger MCP", |
| 5 | + "description": "Provides programmatic access to Tiger Cloud services, databases, and documentation.", |
| 6 | + "version": "$VERSION", |
| 7 | + "homepage": "https://github.com/timescale/tiger-cli", |
| 8 | + "repository": { |
| 9 | + "url": "https://github.com/timescale/tiger-cli", |
| 10 | + "source": "github" |
| 11 | + }, |
| 12 | + "packages": [ |
| 13 | + { |
| 14 | + "registryType": "oci", |
| 15 | + "identifier": "ghcr.io/timescale/tiger-cli:$VERSION", |
| 16 | + "transport": { |
| 17 | + "type": "stdio" |
| 18 | + }, |
| 19 | + "runtimeArguments": [ |
| 20 | + { |
| 21 | + "type": "named", |
| 22 | + "description": "Mount the config directory into the volume", |
| 23 | + "name": "--mount", |
| 24 | + "value": "type=bind,src={source_path},dst=/home/tiger/.config/tiger", |
| 25 | + "variables": { |
| 26 | + "source_path": { |
| 27 | + "description": "Source path on host", |
| 28 | + "format": "filepath", |
| 29 | + "isRequired": true, |
| 30 | + "default": "${HOME}/.config/tiger" |
| 31 | + } |
| 32 | + } |
| 33 | + }, |
| 34 | + { |
| 35 | + "type": "named", |
| 36 | + "description": "Mount the .pgpass file into the volume", |
| 37 | + "name": "--mount", |
| 38 | + "value": "type=bind,src={source_path},dst=/home/tiger/.pgpass", |
| 39 | + "variables": { |
| 40 | + "source_path": { |
| 41 | + "description": "Source path on host", |
| 42 | + "format": "filepath", |
| 43 | + "isRequired": true, |
| 44 | + "default": "${HOME}/.pgpass" |
| 45 | + } |
| 46 | + } |
| 47 | + } |
| 48 | + ], |
| 49 | + "environmentVariables": [ |
| 50 | + { |
| 51 | + "name": "TIGER_PUBLIC_KEY", |
| 52 | + "description": "Tiger Cloud API public key for authentication", |
| 53 | + "format": "string", |
| 54 | + "isRequired": true, |
| 55 | + "isSecret": false |
| 56 | + }, |
| 57 | + { |
| 58 | + "name": "TIGER_SECRET_KEY", |
| 59 | + "description": "Tiger Cloud API secret key for authentication", |
| 60 | + "format": "string", |
| 61 | + "isRequired": true, |
| 62 | + "isSecret": true |
| 63 | + } |
| 64 | + ] |
| 65 | + } |
| 66 | + ] |
| 67 | +} |
0 commit comments