- Home
- MCP servers
- PulPul Pul Pul
PulPul Pul Pul
- go
2
GitHub Stars
go
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"corymhall-pulumi-example-gen-mcp": {
"command": "pulumi-example-gen-mcp",
"args": []
}
}
}This MCP Server generates complete Pulumi constructor examples with placeholder values for Pulumi resources, making it easy to scaffold and illustrate how resources can be instantiated in your Pulumi projects.
How to use
To use this MCP server with an MCP client, first start the server locally and then configure your MCP client to connect to it as a local, stdio-based server. You can browse the available example constructors that the server can generate and request snippets for specific Pulumi resources. Use the generated snippets to seed your Pulumi codebase with representative resource configurations, which you can then customize with real values.
How to install
# Prerequisites: ensure Go is installed on your system
# Install the MCP server binary
go install github.com/corymhall/pulumi-example-gen-mcp@latest
# The command above places the binary on your PATH as pulumi-example-gen-mcp
Configuration
{
"mcpServers": {
"pulumi_example_gen": {
"command": "pulumi-example-gen-mcp"
}
}
}
Additional content
The server supports generating examples for Pulumi resources. For instance, when you request a constructor example for an AWS S3 Bucket, you receive a TypeScript or Go snippet with placeholder fields that you can tailor to match your real resource configuration. This helps you quickly author representative code paths and validate your resource shapes before wiring in real values.