-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathserver.json
More file actions
164 lines (164 loc) · 6.43 KB
/
Copy pathserver.json
File metadata and controls
164 lines (164 loc) · 6.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.localstack/localstack-mcp-server",
"description": "A LocalStack MCP Server providing essential tools for local cloud development & testing",
"status": "active",
"repository": {
"url": "https://github.com/localstack/localstack-mcp-server",
"source": "github"
},
"version": "0.6.0",
"icons": [
{
"src": "https://raw.githubusercontent.com/localstack/localstack-mcp-server/main/icon.png",
"mimeType": "image/png",
"sizes": ["256x256"]
}
],
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "@localstack/localstack-mcp-server",
"version": "0.6.0",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "LocalStack Auth Token (required for all LocalStack MCP tools)",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "LOCALSTACK_AUTH_TOKEN"
},
{
"description": "Source AWS access key used by AWS Replicator to read external AWS resources",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "AWS_ACCESS_KEY_ID"
},
{
"description": "Source AWS secret access key used by AWS Replicator to read external AWS resources",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "AWS_SECRET_ACCESS_KEY"
},
{
"description": "Optional source AWS session token used by AWS Replicator for temporary credentials",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "AWS_SESSION_TOKEN"
},
{
"description": "Source AWS region used by AWS Replicator",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "AWS_DEFAULT_REGION"
},
{
"description": "Optional Replicator-specific source AWS access key. Use this instead of AWS_ACCESS_KEY_ID when the Replicator source account should be isolated from generic AWS config.",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "AWS_REPLICATOR_SOURCE_AWS_ACCESS_KEY_ID"
},
{
"description": "Optional Replicator-specific source AWS secret access key. Use with AWS_REPLICATOR_SOURCE_AWS_ACCESS_KEY_ID.",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "AWS_REPLICATOR_SOURCE_AWS_SECRET_ACCESS_KEY"
},
{
"description": "Optional Replicator-specific source AWS session token for temporary credentials.",
"isRequired": false,
"format": "string",
"isSecret": true,
"name": "AWS_REPLICATOR_SOURCE_AWS_SESSION_TOKEN"
},
{
"description": "Optional Replicator-specific source AWS region. Use with the AWS_REPLICATOR_SOURCE_* credential group.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "AWS_REPLICATOR_SOURCE_REGION_NAME"
},
{
"description": "Optional Replicator-specific source AWS endpoint URL for advanced source-account scenarios.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "AWS_REPLICATOR_SOURCE_ENDPOINT_URL"
},
{
"description": "Set to 1 in the LocalStack container environment to enable App Inspector by default across restarts. The MCP tool can also toggle App Inspector at runtime.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "APP_INSPECTOR"
},
{
"description": "Docker image the management start action launches for the AWS stack (LOCALSTACK_IMAGE_NAME wins over IMAGE_NAME). Defaults to localstack/localstack-pro:latest.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "LOCALSTACK_IMAGE_NAME"
},
{
"description": "Host directory mounted at /var/lib/localstack in the LocalStack container. Defaults to the per-OS cache path the LocalStack CLI used; inside Docker it defaults to the localstack-mcp named volume.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "LOCALSTACK_VOLUME_DIR"
},
{
"description": "Override the gateway port bindings for the start action (comma-separated [host]:port entries). When set, the implicit 443 binding is skipped.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "GATEWAY_LISTEN"
},
{
"description": "Explicit LocalStack container name for Docker-based tools and the container created by start. Defaults to localstack-main (auto-detection covers common names).",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "MAIN_CONTAINER_NAME"
},
{
"description": "Docker daemon endpoint used for all container operations (unix://, npipe://, tcp://). Defaults to the platform's standard socket.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "DOCKER_HOST"
},
{
"description": "Host path of the Docker socket mounted into the LocalStack container (Lambda needs it). Validated to exist when set explicitly. Defaults to /var/run/docker.sock.",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "DOCKER_SOCK"
},
{
"description": "Inclusive start of the host port range published for external LocalStack services on start (default 4510).",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "EXTERNAL_SERVICE_PORTS_START"
},
{
"description": "Inclusive end of the host port range published for external LocalStack services on start (default 4560).",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "EXTERNAL_SERVICE_PORTS_END"
}
]
}
]
}