You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/docs/iac/using-pulumi/mcp-server/index.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,33 @@ In Windsurf, configure the MCP server through the IDE settings:
112
112
113
113
After adding the configuration, authenticate via browser when prompted.
114
114
115
+
### Kiro
116
+
117
+
[Kiro](https://kiro.dev/) is an AI coding assistant that supports MCP servers. To configure the Pulumi MCP server in Kiro, add the following to your `mcp.json` configuration file:
118
+
119
+
```json
120
+
{
121
+
"mcpServers": {
122
+
"pulumi": {
123
+
"command": "npx",
124
+
"args": [
125
+
"mcp-remote",
126
+
"https://mcp.ai.pulumi.com/mcp"
127
+
],
128
+
"disabled": false
129
+
}
130
+
}
131
+
}
132
+
```
133
+
134
+
> [!INFO]
135
+
> Kiro currently supports local stdio MCP servers, however you can add remote MCP servers by leveraging the [mcp-remote npm package](https://www.npmjs.com/package/mcp-remote) to make requests to the remote MCP endpoint.
136
+
> For more information, see [Remote MCP Servers](https://kiro.dev/docs/mcp/servers/#remote-mcp-servers) in the Kiro documentation.
137
+
138
+
The `mcp.json` configuration file can be placed in several locations. See [Configuration Locations](https://kiro.dev/docs/mcp/configuration/#configuration-locations) in the Kiro documentation for details on where to place this file.
139
+
140
+
After adding the configuration, authenticate via the browser popup when prompted.
141
+
115
142
## Available tools
116
143
117
144
The Pulumi MCP server provides several tools that AI assistants can use to interact with your Pulumi infrastructure:
0 commit comments