Skip to content

Commit 23494ac

Browse files
authored
Merge pull request #213 from stackql/feature/web-content-updates
added mcp menu item
2 parents 3f57638 + a27d1d6 commit 23494ac

File tree

3 files changed

+28
-10
lines changed

3 files changed

+28
-10
lines changed

blog/2025-11-02-stackql-mcp-server-now-available.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors:
77
image: "/img/blog/stackql-mcp-server-featured-image.png"
88
description: Enable AI agents to query and manage cloud infrastructure using the Model Context Protocol.
99
keywords: [stackql, mcp, model context protocol, ai agents, claude, chatgpt, infrastructure-as-code, cloud management, anthropic]
10-
tags: [stackql, mcp, model context protocol, ai agents, claude, infrastructure-as-code]
10+
tags: [stackql, mcp, model context protocol, ai agents, claude, infrastructure-as-code, ai]
1111
---
1212

1313
[__StackQL__](https://github.com/stackql/stackql) now supports the [__Model Context Protocol (MCP)__](https://modelcontextprotocol.io/). This integration enables AI agents and assistants to query and manage cloud infrastructure across multiple providers using natural language.

docs/index.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,19 +24,19 @@ import DocsHero from '@site/src/components/DocsHero/DocsHero';
2424
<>
2525
Open Source<br/>
2626
Multi Cloud Analytics,<br/>
27-
IaC, Automation and more
27+
IaC, Automation and Agent Tooling
2828
</>
2929
}
3030
byline={
3131
<>
32-
Provision. Query. Secure.
32+
The Declarative Substrate for Cloud and AI Agents
3333
</>
3434
}
3535
/>
3636

3737
---
3838

39-
StackQL is a new approach to Cloud Infrastructure coding. With StackQL you can deploy, query and interact with cloud services and resources from major cloud providers using a familiar language...SQL! Querying cloud services in your account is as easy as writing a [`SELECT`](/docs/language-spec/select) statement...
39+
StackQL provides a single, declarative interface for querying and mutating cloud control planes and data planes. As AI agents move from assistance to autonomous execution, they need a safe, auditable way to read state, change state, enforce constraints, and integrate across systems. StackQL fills this gap by modeling the world as a database — making infrastructure, services, and APIs accessible through familiar SQL semantics.
4040

4141
<Tabs
4242
defaultValue="iql"
@@ -81,8 +81,11 @@ SELECT 'stackql-demo',
8181
'test10gbdisk', 10;
8282
```
8383

84-
Using StackQL you can develop your way: declarative or procedural. With an easy grammar to learn and no state file to manage, you can get started quickly and use StackQL interchangeably with other infrastructure as code tools, cloud native or otherwise. Uses for StackQL include:
84+
Using StackQL you can develop your way: declarative or procedural. With an easy grammar to learn and no state file to manage, you can get started quickly and use StackQL interchangeably with other infrastructure as code tools, cloud native or otherwise. StackQL provides a universal interface for AI agents to interact with cloud infrastructure. Uses for StackQL include:
8585

86+
- **AI Agent Integration** - Enable agents to provision and query cloud resources
87+
- **Control Plane Communication** - Programmatic infrastructure provisioning for agentic workflows
88+
- **Data Plane Observability** - Real-time monitoring and analytics for AI-driven operations
8689
- Cloud infrastructure deployment (using SQL)
8790
- Cloud asset inventory and reporting (using SQL)
8891
- Cloud compliance and control attestation (using SQL)

docusaurus.config.js

Lines changed: 20 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const footerMoreItems = [
9898
const config = {
9999
title: 'StackQL',
100100
staticDirectories: ['static'],
101-
tagline: 'Provision and Query Cloud and SaaS Resources using SQL',
101+
tagline: 'The substrate for AI agents to interact with cloud control planes and data planes using SQL',
102102
url: 'https://stackql.io',
103103
baseUrl: '/',
104104
onBrokenLinks: 'throw',
@@ -251,11 +251,11 @@ const config = {
251251
({
252252
metadata: [
253253
{name: 'robots', content: 'index,follow'},
254-
{name: 'keywords', content: 'stackql, sql, infrastructure as code, cloud services, api, devops'},
254+
{name: 'keywords', content: 'stackql, sql, ai agents, agentic ai, infrastructure as code, cloud services, api, devops, control plane, data plane'},
255255
{name: 'twitter:site', content: '@stackql'},
256256
{name: 'twitter:creator', content: '@stackql'},
257-
{name: 'twitter:title', content: 'StackQL - SQL for Cloud Infrastructure'},
258-
{name: 'twitter:description', content: 'StackQL is an open-source infrastructure-as-code tool that enables you to deploy, configure, query and operate cloud and SaaS services using SQL.'},
257+
{name: 'twitter:title', content: 'StackQL - SQL for Cloud Infrastructure and AI Agents'},
258+
{name: 'twitter:description', content: 'StackQL is an open-source infrastructure-as-code tool and the substrate for AI agents to communicate with cloud control planes and data planes using SQL.'},
259259
{name: 'og:locale', content: 'en_US'},
260260
{name: 'og:site_name', content: 'StackQL'},
261261
{name: 'msapplication-TileColor', content: '#2d89ef'},
@@ -302,7 +302,22 @@ const config = {
302302
to: '/install',
303303
label: 'Install',
304304
position: 'left',
305-
},
305+
},
306+
{
307+
type: 'dropdown',
308+
label: 'AI Agents',
309+
position: 'left',
310+
items: [
311+
{
312+
to: '/docs/command-line-usage/mcp',
313+
label: 'MCP Server',
314+
},
315+
{
316+
to: 'blog/tags/ai',
317+
label: 'AI Resources',
318+
},
319+
],
320+
},
306321
{
307322
to: '/stackql-deploy',
308323
label: 'stackql-deploy',

0 commit comments

Comments
 (0)