pulumi-mcp-server-integration-hub
Facilitate application connectivity with external resources and data streams via a uniform communication standard. This enables dynamic orchestration between Large Language Models and diverse operational assets, significantly improving workflow efficiency.
Author

dogukanakkaya
Quick Info
Actions
Tags
Utilizing the MCP Server Conduit
To engage with the Model Context Protocol (MCP) Server, access is required via an MCP-compatible client utility. A selection of supported client interfaces includes Claude Desktop, the VSCode extension, and Cline, amongst others. The setup procedure exhibits strong uniformity across these various platforms.
Refer to the following links for specific integration guides: - Guidance for Cline MCP Server setup: Cline MCP Server configuration - Guidance for VS Code MCP Server setup: VS Code MCP Server configuration
Below is an illustrative configuration snippet intended for insertion into your client environment:
{ "pulumi-mcp-server": { "command": "docker", "args": [ "run", "-i", "--rm", "--name", "pulumi-mcp-server", "-e", "PULUMI_ACCESS_TOKEN", "dogukanakkaya/pulumi-mcp-server" ], "env": { "PULUMI_ACCESS_TOKEN": "${YOUR_TOKEN}" }, "transportType": "stdio" } }
