-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathgenerate-server.json.ts
More file actions
100 lines (96 loc) · 2.18 KB
/
Copy pathgenerate-server.json.ts
File metadata and controls
100 lines (96 loc) · 2.18 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import { writeFile } from 'node:fs/promises';
const version = process.argv[2]?.trim().replace(/^v/, '');
if (!version) {
console.error('Must provide version as first argument');
process.exit(1);
}
const environmentVariables = [
{
description: 'Your API key for text embeddings via OpenAI',
isRequired: true,
format: 'string',
isSecret: true,
name: 'OPENAI_API_KEY',
},
{
description: 'PostgreSQL host to connect to',
isRequired: true,
format: 'string',
isSecret: true,
name: 'PGHOST',
},
{
description: 'PostgreSQL port to connect to',
isRequired: true,
format: 'number',
isSecret: true,
name: 'PGPORT',
},
{
description: 'PostgreSQL user to connect as',
isRequired: true,
format: 'string',
isSecret: true,
name: 'PGUSER',
},
{
description: 'PostgreSQL password to connect with',
isRequired: true,
format: 'string',
isSecret: true,
name: 'PGPASSWORD',
},
{
description: 'PostgreSQL database to connect to',
isRequired: true,
format: 'string',
isSecret: true,
name: 'PGDATABASE',
},
{
description: 'PostgreSQL database schema to use',
isRequired: false,
format: 'string',
isSecret: true,
name: 'DB_SCHEMA',
},
];
const output = {
$schema:
'https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json',
name: 'io.github.timescale/pg-aiguide',
// max length 100 chars:
description:
'Comprehensive PostgreSQL documentation and best practices, including ecosystem tools',
repository: {
url: 'https://github.com/timescale/pg-aiguide',
source: 'github',
},
version,
remotes: [
{
type: 'streamable-http',
url: 'https://mcp.tigerdata.com/docs',
},
],
packages: [
{
registryType: 'npm',
identifier: '@tigerdata/pg-aiguide',
version,
transport: {
type: 'stdio',
},
environmentVariables,
},
{
registryType: 'oci',
identifier: `ghcr.io/timescale/pg-aiguide:${version}`,
transport: {
type: 'stdio',
},
environmentVariables,
},
],
};
await writeFile('server.json', JSON.stringify(output, null, 2));