infrawise 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/server/index.js +16 -0
- package/package.json +14 -4
package/README.md
CHANGED
package/dist/server/index.js
CHANGED
|
@@ -286,6 +286,22 @@ export function createServer(port = 3000) {
|
|
|
286
286
|
graphEdges: currentGraph.edges.length,
|
|
287
287
|
findings: currentFindings.length,
|
|
288
288
|
}));
|
|
289
|
+
fastify.get('/.well-known/mcp/server-card.json', async () => ({
|
|
290
|
+
schema_version: '2026-01',
|
|
291
|
+
name: 'io.github.Sidd27/infrawise',
|
|
292
|
+
display_name: 'Infrawise',
|
|
293
|
+
version,
|
|
294
|
+
description: 'Infrastructure analysis MCP server — scans DynamoDB, PostgreSQL, MySQL, MongoDB, Lambda, SQS, SNS, EventBridge, Secrets Manager, SSM, CloudWatch, Terraform, CDK, and source code. Surfaces missing indexes, DLQ gaps, Lambda misconfig, and correct trigger event shapes.',
|
|
295
|
+
homepage: 'https://github.com/Sidd27/infrawise',
|
|
296
|
+
repository: 'https://github.com/Sidd27/infrawise',
|
|
297
|
+
transports: [{ type: 'streamable-http', url: `http://localhost:${port}/mcp` }],
|
|
298
|
+
tools: [
|
|
299
|
+
'get_infra_overview', 'get_graph_summary', 'analyze_function',
|
|
300
|
+
'suggest_gsi', 'postgres_index_suggestions', 'suggest_mongo_index', 'mysql_index_suggestions',
|
|
301
|
+
'get_queue_details', 'get_topic_details', 'get_secrets_overview', 'get_parameter_overview',
|
|
302
|
+
'get_lambda_overview', 'get_eventbridge_details', 'get_log_errors',
|
|
303
|
+
],
|
|
304
|
+
}));
|
|
289
305
|
fastify.post('/mcp', async (request, reply) => {
|
|
290
306
|
const transport = new StreamableHTTPServerTransport({ sessionIdGenerator: undefined });
|
|
291
307
|
reply.raw.on('close', () => transport.close());
|
package/package.json
CHANGED
|
@@ -1,31 +1,41 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "infrawise",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"mcpName": "io.github.Sidd27/infrawise",
|
|
5
5
|
"description": "CLI-first infrastructure intelligence platform — analyzes DynamoDB, PostgreSQL, MySQL, MongoDB, SQS, SNS, SSM, Secrets Manager, Lambda, CloudWatch Logs and exposes findings as an MCP server for Claude Code",
|
|
6
6
|
"keywords": [
|
|
7
|
+
"mcp",
|
|
8
|
+
"mcp-server",
|
|
9
|
+
"model-context-protocol",
|
|
7
10
|
"infrastructure",
|
|
11
|
+
"infrastructure-analysis",
|
|
8
12
|
"aws",
|
|
9
13
|
"dynamodb",
|
|
10
14
|
"sqs",
|
|
11
15
|
"sns",
|
|
12
16
|
"lambda",
|
|
17
|
+
"eventbridge",
|
|
13
18
|
"cloudwatch",
|
|
14
19
|
"secrets-manager",
|
|
15
20
|
"ssm",
|
|
16
21
|
"postgresql",
|
|
17
22
|
"mysql",
|
|
18
23
|
"mongodb",
|
|
19
|
-
"
|
|
24
|
+
"serverless",
|
|
20
25
|
"claude",
|
|
21
26
|
"claude-code",
|
|
22
|
-
"
|
|
23
|
-
"
|
|
27
|
+
"cursor",
|
|
28
|
+
"ai-coding",
|
|
29
|
+
"ai-tools",
|
|
24
30
|
"devtools",
|
|
31
|
+
"cli",
|
|
25
32
|
"terraform",
|
|
26
33
|
"cloudformation",
|
|
27
34
|
"cdk"
|
|
28
35
|
],
|
|
36
|
+
"agentskills": {
|
|
37
|
+
"infrawise": "./AGENTS.md"
|
|
38
|
+
},
|
|
29
39
|
"homepage": "https://github.com/Sidd27/infrawise#readme",
|
|
30
40
|
"repository": {
|
|
31
41
|
"type": "git",
|