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