-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathserver.json
More file actions
101 lines (101 loc) · 3.75 KB
/
server.json
File metadata and controls
101 lines (101 loc) · 3.75 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-07-09/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.4.0",
"packages": [
{
"registry_type": "npm",
"registry_base_url": "https://registry.npmjs.org",
"identifier": "@localstack/localstack-mcp-server",
"version": "0.4.0",
"transport": {
"type": "stdio"
},
"environment_variables": [
{
"description": "LocalStack Auth Token (required for all LocalStack MCP tools)",
"is_required": true,
"format": "string",
"is_secret": true,
"name": "LOCALSTACK_AUTH_TOKEN"
},
{
"description": "Source AWS access key used by AWS Replicator to read external AWS resources",
"is_required": false,
"format": "string",
"is_secret": true,
"name": "AWS_ACCESS_KEY_ID"
},
{
"description": "Source AWS secret access key used by AWS Replicator to read external AWS resources",
"is_required": false,
"format": "string",
"is_secret": true,
"name": "AWS_SECRET_ACCESS_KEY"
},
{
"description": "Optional source AWS session token used by AWS Replicator for temporary credentials",
"is_required": false,
"format": "string",
"is_secret": true,
"name": "AWS_SESSION_TOKEN"
},
{
"description": "Source AWS region used by AWS Replicator",
"is_required": false,
"format": "string",
"is_secret": 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.",
"is_required": false,
"format": "string",
"is_secret": 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.",
"is_required": false,
"format": "string",
"is_secret": true,
"name": "AWS_REPLICATOR_SOURCE_AWS_SECRET_ACCESS_KEY"
},
{
"description": "Optional Replicator-specific source AWS session token for temporary credentials.",
"is_required": false,
"format": "string",
"is_secret": true,
"name": "AWS_REPLICATOR_SOURCE_AWS_SESSION_TOKEN"
},
{
"description": "Optional Replicator-specific source AWS region. Use with the AWS_REPLICATOR_SOURCE_* credential group.",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "AWS_REPLICATOR_SOURCE_REGION_NAME"
},
{
"description": "Optional Replicator-specific source AWS endpoint URL for advanced source-account scenarios.",
"is_required": false,
"format": "string",
"is_secret": 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.",
"is_required": false,
"format": "string",
"is_secret": false,
"name": "APP_INSPECTOR"
}
]
}
]
}