-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
88 lines (88 loc) · 2.91 KB
/
Copy pathserver.json
File metadata and controls
88 lines (88 loc) · 2.91 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.nickklos10/querypilot",
"title": "QueryPilot",
"description": "Safe SQL gateway for AI agents: SELECT-only validation, access policies, masking, audit trail, evals",
"websiteUrl": "https://github.com/nickklos10/QueryPilot#mcp-server",
"repository": {
"url": "https://github.com/nickklos10/QueryPilot",
"source": "github",
"id": "1223044760"
},
"version": "0.1.1",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "querypilot",
"version": "0.1.1",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"packageArguments": [
{
"type": "positional",
"value": "mcp",
"description": "Selects the `querypilot mcp` subcommand (as opposed to `serve` or `eval`)."
}
],
"environmentVariables": [
{
"name": "QUERYPILOT_DATABASE_URL",
"description": "SQLAlchemy-style database connection URL, e.g. sqlite:///demo.db or postgresql://user:pass@host:5432/db. Equivalent to --database-url.",
"isRequired": true,
"isSecret": true,
"format": "string"
},
{
"name": "QUERYPILOT_DIALECT",
"description": "SQL dialect for the connector. Equivalent to --dialect.",
"default": "sqlite",
"choices": [
"sqlite",
"postgres",
"postgresql"
],
"format": "string"
},
{
"name": "QUERYPILOT_MAX_ROWS",
"description": "Maximum rows returned per query. Equivalent to --max-rows.",
"default": "100",
"format": "number"
},
{
"name": "QUERYPILOT_TIMEOUT_SECONDS",
"description": "Query execution timeout in seconds. Equivalent to --timeout-seconds.",
"default": "10",
"format": "number"
},
{
"name": "QUERYPILOT_ACCESS_POLICY_JSON",
"description": "JSON-encoded AccessPolicy (blocked_columns, allowed_columns, row_filters, masking_rules) enforced before execution. Equivalent to --access-policy-json.",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "QUERYPILOT_MCP_TRANSPORT",
"description": "MCP transport used by `querypilot mcp`. Equivalent to --transport. Most MCP clients should leave this at stdio; streamable-http is for clients that speak Streamable HTTP directly.",
"default": "stdio",
"choices": [
"stdio",
"streamable-http",
"sse"
],
"format": "string"
}
]
}
],
"_meta": {
"io.modelcontextprotocol.registry/publisher-provided": {
"tool": "manual",
"version": "0.1.1"
}
}
}