@stackql/mcp-server
v0.10.542
Published
StackQL MCP server - SQL-native query and provisioning engine for cloud infrastructure, served over MCP. Downloads the signed stackql binary on first run.
Readme
@stackql/mcp-server
npx-able launcher for the StackQL MCP server - a SQL-native query and provisioning engine for cloud and SaaS infrastructure (AWS, Azure, Google, GitHub, Databricks, and other providers), served over the Model Context Protocol.
On first run, the launcher downloads the signed stackql binary for your
platform from the matching GitHub release (sha256-verified against pins baked
into this package), caches it under ~/.stackql/mcp-server-bin/, and starts
it as an MCP stdio server. Subsequent runs start instantly from the cache.
Usage
With any MCP client that supports stdio servers:
{
"mcpServers": {
"stackql": {
"command": "npx",
"args": ["-y", "@stackql/mcp-server"]
}
}
}Provider credentials are passed through with stackql's standard --auth flag:
{
"mcpServers": {
"stackql": {
"command": "npx",
"args": [
"-y",
"@stackql/mcp-server",
"--auth={\"github\":{\"type\":\"null_auth\"}}"
]
}
}
}Any extra arguments are passed to stackql after the standard MCP server
arguments. The launcher sets --approot to ~/.stackql and disables the
audit file sink by default; pass your own --approot or --mcp.config to
override (later flags win).
Environment overrides
STACKQL_MCP_BIN- path to an existingstackqlbinary; skips the download.STACKQL_MCP_BUNDLE- path to a local.mcpbbundle to extract the binary from (testing; skips download and sha verification).
Other installation vectors
- Claude Desktop one-click bundles (
.mcpb): https://github.com/stackql/stackql/releases/latest - PyPI:
uvx stackql-mcp-server - Docker:
docker run -i --rm stackql/stackql-mcp - Native installers and package managers: https://stackql.io/docs/installing-stackql
Links
- Docs: https://stackql.io/docs
- MCP Registry:
io.github.stackql/stackql-mcp - Source: https://github.com/stackql/stackql
