Pulumi MCP Server

DevOpsstdiosse
代码仓库

Pulumi's official MCP server for AI-assisted Infrastructure as Code. Wraps the Pulumi Automation and Cloud APIs so agents can preview and deploy stacks, read stack outputs, inspect resources, and look up provider/resource schemas from the Pulumi Registry. Helps developers codify cloud architectures and review infrastructure diffs from within an AI coding assistant.

连接

将此配置添加到 .claude/mcp.json

传输方式:
{
  "mcpServers": {
    "pulumi": {
      "command": "npx",
      "args": [
        "-y",
        "@pulumi/mcp-server@latest",
        "stdio"
      ]
    }
  }
}

工具 (3)

preview

Run a Pulumi preview to show the changes a deployment would make.

{
  "type": "object",
  "required": [
    "workDir"
  ],
  "properties": {
    "workDir": {
      "type": "string",
      "description": "Path to the Pulumi project directory"
    }
  }
}

up

Deploy a Pulumi stack, creating or updating cloud resources.

{
  "type": "object",
  "required": [
    "workDir"
  ],
  "properties": {
    "workDir": {
      "type": "string",
      "description": "Path to the Pulumi project directory"
    }
  }
}

get_resource

Look up a resource's schema and input/output properties from the Pulumi Registry.

{
  "type": "object",
  "required": [
    "provider",
    "resource"
  ],
  "properties": {
    "provider": {
      "type": "string",
      "description": "Provider name (e.g. aws, gcp, azure)"
    },
    "resource": {
      "type": "string",
      "description": "Resource type to look up"
    }
  }
}

资源

此服务器未提供任何资源。

提示词

此服务器未提供任何提示词。

服务器信息

作者
Pulumi (@pulumi)
代码仓库
https://github.com/pulumi/mcp-server
星标
0
最后更新
2026年7月12日