Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
node_modules/
tmp/
/.stackql
/.tools
102 changes: 49 additions & 53 deletions registry/server.template.json
Original file line number Diff line number Diff line change
@@ -1,53 +1,49 @@
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.stackql/stackql-mcp",
"title": "StackQL MCP Server",
"description": "SQL-native query and provisioning engine for cloud infrastructure, served over MCP via 'stackql mcp'.",
"websiteUrl": "https://stackql.io",
"repository": {
"url": "https://github.com/stackql/stackql",
"source": "github"
},
"version": "__VERSION__",
"packages": [
{
"registryType": "mcpb",
"registryBaseUrl": "https://github.com",
"identifier": "https://github.com/stackql/stackql/releases/download/v__VERSION__/stackql-mcp-linux-x64.mcpb",
"version": "__VERSION__",
"fileSha256": "__SHA_LINUX_X64__",
"transport": { "type": "stdio" }
},
{
"registryType": "mcpb",
"registryBaseUrl": "https://github.com",
"identifier": "https://github.com/stackql/stackql/releases/download/v__VERSION__/stackql-mcp-linux-arm64.mcpb",
"version": "__VERSION__",
"fileSha256": "__SHA_LINUX_ARM64__",
"transport": { "type": "stdio" }
},
{
"registryType": "mcpb",
"registryBaseUrl": "https://github.com",
"identifier": "https://github.com/stackql/stackql/releases/download/v__VERSION__/stackql-mcp-windows-x64.mcpb",
"version": "__VERSION__",
"fileSha256": "__SHA_WINDOWS_X64__",
"transport": { "type": "stdio" }
},
{
"registryType": "mcpb",
"registryBaseUrl": "https://github.com",
"identifier": "https://github.com/stackql/stackql/releases/download/v__VERSION__/stackql-mcp-darwin-universal.mcpb",
"version": "__VERSION__",
"fileSha256": "__SHA_DARWIN_UNIVERSAL__",
"transport": { "type": "stdio" }
}
],
"_meta": {
"io.modelcontextprotocol.registry/publisher-provided": {
"tool": "stackql-mcpb-packaging",
"homepage": "https://stackql.io",
"documentation": "https://stackql.io/docs"
}
}
}
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.stackql/stackql-mcp",
"title": "StackQL MCP Server",
"description": "SQL-native query and provisioning engine for cloud infrastructure, served over MCP.",
"websiteUrl": "https://stackql.io",
"repository": {
"url": "https://github.com/stackql/stackql",
"source": "github"
},
"version": "__VERSION__",
"packages": [
{
"registryType": "mcpb",
"identifier": "https://github.com/stackql/stackql/releases/download/v__VERSION__/stackql-mcp-linux-x64.mcpb",
"version": "__VERSION__",
"fileSha256": "__SHA_LINUX_X64__",
"transport": { "type": "stdio" }
},
{
"registryType": "mcpb",
"identifier": "https://github.com/stackql/stackql/releases/download/v__VERSION__/stackql-mcp-linux-arm64.mcpb",
"version": "__VERSION__",
"fileSha256": "__SHA_LINUX_ARM64__",
"transport": { "type": "stdio" }
},
{
"registryType": "mcpb",
"identifier": "https://github.com/stackql/stackql/releases/download/v__VERSION__/stackql-mcp-windows-x64.mcpb",
"version": "__VERSION__",
"fileSha256": "__SHA_WINDOWS_X64__",
"transport": { "type": "stdio" }
},
{
"registryType": "mcpb",
"identifier": "https://github.com/stackql/stackql/releases/download/v__VERSION__/stackql-mcp-darwin-universal.mcpb",
"version": "__VERSION__",
"fileSha256": "__SHA_DARWIN_UNIVERSAL__",
"transport": { "type": "stdio" }
}
],
"_meta": {
"io.modelcontextprotocol.registry/publisher-provided": {
"tool": "stackql-mcpb-packaging",
"homepage": "https://stackql.io",
"documentation": "https://stackql.io/docs"
}
}
}
Loading