npm @stackql/mcp-serverstdioMITupdated 15d ago
[logo]: https://stackql.io/img/stackql-logo-bold.png "stackql logo" [homepage]: https://stackql.io/ [docs]: https://stackql.io/docs [blog]: https://stackql.io/blog [registry]: https://github.com/stackql/stackql-provider-registry [variables]: https://stackql.io/docs/getting-started/variables [macpkg]: https://storage.googleapis.com/stackql-public-releases/latest/stackqldarwinmultiarch.pkg [winmsi]: https://releases.stackql.io/stackql/latest/stackqlwindowsamd64.msi [winzip]: https://releases.stackql.io/stackql/latest/stackqlwindowsamd64.zip [tuxzip]: https://releases.stackql.io/stackql/latest/st…
O que dá para fazer com StackQL MCP Server?
Deploy, manage and query cloud resources and interact with APIs using SQL
The Universal Interface for the Agentic Era. Configuration-as-Data. Infrastructure-as-Context.
Read the docs »
Raise an Issue ·
Request a Feature ·
Developer Guide ·
BYO Providers
About The Project
StackQL is an open-source project built with Golang that allows you to create, modify and query the state of services and resources across different local and remote interfaces, using SQL semantics. Such interfaces canonically include, but are not limited to, cloud and SaaS providers (Google, AWS, Azure, Okta, GitHub, etc.).

How it works
StackQL is a standalone application that can be used in client mode (via exec or shell) or accessed via a Postgres wire protocol client (psycopg2, etc.) using server mode (srv).
StackQL parses SQL statements and transpiles them into API requests to the (cloud) resource provider. The API calls are then executed and the results are returned to the user.
StackQL provider interfaces are canonically defined in OpenAPI extensions to the providers' specification. These definitions are then used to generate the SQL schema and the API client. The source for the provider definitions are stored in the StackQL Registry. The semantics of provider interactions are defined in our any-sdk library. For more detail on nuts and bolts, please see the local AGENTS.md file and that of any-sdk.
flowchart LR
subgraph StackQL
direction BT
subgraph ProviderDefs
Registry[Provider Registry Docs]
end
subgraph App
Proc[$ stackql exec\n$ stackql shell\n$ stackql srv]
style Proc fill:#000,stroke:#000,color:#fff,text-align:left;
%% ,font-family:'Courier New', Courier, monospace
end
end
User((User)) <--> StackQL <--> Provider[Cloud Provider API]
ProviderDefs --> App
More detailed design documentation can be found in the here.
MCP Server
StackQL is an MCP server - SQL over 40+ cloud and SaaS providers for AI agents. Point any MCP-capable client (Claude, VS Code, Cursor, etc.) at StackQL and it can query and provision cloud resources using SQL.
Run it over stdio:
stackql mcp --mcp.server.type=stdio
StackQL MCP is published to the Official MCP Registry as io.github.stackql/stackql-mcp and distributed via npm, PyPI, Docker, a GitHub Action and .mcpb bundles. Pick an install vector and add the matching block to your MCP client config:
{
"mcpServers": {
"stackql": {
"command": "npx",
"args": ["-y", "@stackql/mcp-server"]
}
}
}
{
"mcpServers": {
"stackql": {
"command": "uvx",
"args": ["stackql-mcp-server"]
}
}
}
{
"mcpServers": {
"stackql": {
"command": "docker",
"args": ["run", "-i", "--rm", "stackql/stackql-mcp"]
}
}
}
Download the bundle for your platform from the latest release and install it in your MCP client (one-click in clients that support
.mcpb).
stackql-mcp-linux-x64.mcpbstackql-mcp-linux-arm64.mcpbstackql-mcp-windows-x64.mcpbstackql-mcp-darwin-universal.mcpb
Wire StackQL MCP into agentic CI workflows. Defaults to
read_onlymode, the safe default for CI.
- uses: stackql/setup-stackql-mcp@v1
with:
mode: read_only
For client-specific setup, authentication and server modes, see the full MCP install and usage docs.
Installation
StackQL is available for Windows, MacOS, Linux, Docker, GitHub Actions and more. See the installation instructions below for your platform.
- Homebrew (
amd64andarm64)brew install stackqlorbrew tap stackql/tap && brew install stackql/tap/stackql
- MacOS PKG Installer (
amd64andarm64)- download the latest MacOS PKG installer for StackQL
- run the installer and follow the prompts
- MSI Installer
- download the latest MSI installer for StackQL
- run the installer and follow the prompts
- Chocolatey
- install Chocolatey
- run
choco install stackql
- ZIP Archive
- download the latest Windows ZIP archive for StackQL
- extract the archive (code signed
stackql.exefile) to a directory of your choice - add the directory to your
PATHenvironment variable (optional)
- ZIP Archive
- download the latest Linux ZIP archive for StackQL
- or via
curl -L https://bit.ly/stackql-zip -O && unzip stackql-zip
- or via
- extract the archive (
stackqlfile) to a directory of your choice - add the directory to your
PATHenvironment variable (optional)
- download the latest Linux ZIP archive for StackQL
View all available StackQL images on DockerHub. Images available include
stackql,stackql-jupyter-demoand more. Pull the latest StackQL base image using:
docker pull stackql/stackql
Want findings, not infrastructure? Run a read-only cross-cloud security & FinOps audit with the standard image in one command — see the Docker audit quickstart.
Use StackQL in your GitHub Actions workflows to automate cloud infrastructure provisioning, IaC assurance, or compliance/security. Available GitHub Actions include:
setup-stackql,stackql-execand more
Usage
StackQL can be used via the interactive REPL shell, or via the exec command or ran as a server using the Postgres wire protocol.
ℹ️ StackQL does not require or install a database.
-
Interactive Shell
# run interactive stackql queries stackql shell --auth="${AUTH}" -
Execute a statement or file
stackql exec --auth="${AUTH}" -i myscript.iql --iqldata vars.jsonnet --output json # or stackql exec --auth="${AUTH}" "SELECT id, status FROM aws.ec2.instances WHERE region = 'us-east-1'"ℹ️ output options of
json,csv,tableandtextare available for theexeccommand using the--outputflagℹ️ StackQL supports passing parameters using
jsonnetorjson, see Using Variables -
Server
# serve client requests over the Postgres wire protocol (psycopg2, etc.) stackql srv --auth="${AUTH}"
For more examples, please check our Blog
Contributing
Contributions are welcome and encouraged. For more information on how to contribute, please see our contributing guide.
License
Distributed under the MIT License. See LICENSE for more information. Licenses for third party software we are using are included in the /docs/licenses directory.
Contact
Get in touch with us via Twitter at @stackql, email us at info@stackql.io or start a conversation using discussions.
Acknowledgements
Forks of the following support our work:
- vitess
- kin-openapi
- gorilla/mux
- readline
- psql-wire
- mcp-postgres
- the
golangMCP SDK - ...and more. Please excuse us for any omissions.
We gratefully acknowledge these pieces of work.
Instalação
Adicione StackQL MCP Server ao seu cliente. Escolha o que você usa.
claude mcp add mcp-server -- npx -y @stackql/mcp-servercodex mcp add mcp-server -- npx -y @stackql/mcp-serveramp mcp add mcp-server -- npx -y @stackql/mcp-server{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@stackql/mcp-server"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@stackql/mcp-server"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"mcp-server","command":"npx","args":["-y","@stackql/mcp-server"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@stackql/mcp-server"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@stackql/mcp-server"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp-server": {
"command": "npx",
"args": [
"-y",
"@stackql/mcp-server"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp-server": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@stackql/mcp-server"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp-server": {
"command": {
"path": "npx",
"args": [
"-y",
"@stackql/mcp-server"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @stackql/mcp-serverRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Pontuação
39 / 100
Incompleta
- Documentação25/25
- Manutenção25/25
- Confiança16/20
- Capacidade0/15
- Instalação12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 8 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Histórico de versões
| Versões | Publicada |
|---|---|
| 0.10.605Mais recente | 19 de ago. de 2026 |
| 0.10.601 | 15 de ago. de 2026 |
| 0.10.591 | 6 de ago. de 2026 |
| 0.10.582 | 31 de jul. de 2026 |
| 0.10.559 | 22 de jul. de 2026 |
| 0.10.557 | 20 de jul. de 2026 |
| 0.10.542 | 3 de jul. de 2026 |
| 0.10.500.3 | 20 de jun. de 2026 |
