Skip to content

Commit b7d2311

Browse files
committed
Add Pulumi MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 14015a9 commit b7d2311

1 file changed

Lines changed: 75 additions & 0 deletions

File tree

servers/com.pulumi-mcp-npx.json

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.pulumi-mcp-npx",
4+
"name": "Pulumi (npx)",
5+
"alias": "pulumi",
6+
"description": "Infrastructure as Code agent tooling for Pulumi: browse the Pulumi Registry, preview and deploy stacks, refresh state, read stack outputs, and search deployed resources via the Pulumi CLI. Most operations run locally; a Pulumi access token unlocks Pulumi Cloud features.",
7+
"logo": "https://avatars.githubusercontent.com/u/21992475?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools",
11+
"cloud"
12+
],
13+
"tags": [
14+
"pulumi",
15+
"infrastructure-as-code",
16+
"iac",
17+
"devops",
18+
"cloud",
19+
"deployment"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "npx",
24+
"args": [
25+
"-y",
26+
"@pulumi/mcp-server@latest",
27+
"stdio"
28+
],
29+
"env": {
30+
"PULUMI_ACCESS_TOKEN": "${input:PULUMI_ACCESS_TOKEN}"
31+
},
32+
"metadata": {
33+
"inputs": [
34+
{
35+
"id": "PULUMI_ACCESS_TOKEN",
36+
"label": "Pulumi Access Token",
37+
"description": "Optional. Most operations work against the local Pulumi CLI without it. Provide a Pulumi access token to enable Pulumi Cloud features such as managed state, organization stacks, and resource search.",
38+
"type": "text",
39+
"required": false,
40+
"secret": true,
41+
"placeholder": "pul-************************",
42+
"obtain": {
43+
"url": "https://app.pulumi.com/account/tokens",
44+
"instructions": "1. Sign in at app.pulumi.com\n2. Open the account menu and go to Settings > Access Tokens (app.pulumi.com/account/tokens)\n3. Click 'Create token'\n4. Give it a description and create it\n5. Copy the generated token",
45+
"button_label": "Create Token"
46+
}
47+
}
48+
]
49+
}
50+
},
51+
"auth": {
52+
"type": "optional_api_key",
53+
"instructions": "Optional. Pulumi MCP works against the local Pulumi CLI without credentials. Set a PULUMI_ACCESS_TOKEN (create one at https://app.pulumi.com/account/tokens) to enable Pulumi Cloud features."
54+
},
55+
"contributor": {
56+
"name": "Pulumi",
57+
"github": "pulumi",
58+
"url": "https://www.pulumi.com"
59+
},
60+
"links": {
61+
"repository": "https://github.com/pulumi/mcp-server",
62+
"homepage": "https://www.pulumi.com",
63+
"documentation": "https://www.pulumi.com/docs/iac/using-pulumi/mcp-server/"
64+
},
65+
"platforms": [
66+
"all"
67+
],
68+
"capabilities": {
69+
"tools": true,
70+
"resources": false,
71+
"prompts": true,
72+
"read_only_mode": false
73+
},
74+
"changelog_url": "https://github.com/pulumi/mcp-server/releases"
75+
}

0 commit comments

Comments
 (0)