infrawise 0.2.0 → 0.2.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/dist/server/index.js +1 -0
- package/package.json +1 -1
package/dist/server/index.js
CHANGED
|
@@ -303,6 +303,7 @@ async function handleMcp(body) {
|
|
|
303
303
|
const tool = TOOLS.find((t) => t.name === name);
|
|
304
304
|
if (!tool)
|
|
305
305
|
return rpcErr(id, -32601, `Unknown tool: ${name}`);
|
|
306
|
+
core_1.logger.info(`→ ${name}${Object.keys(args).length ? ` ${JSON.stringify(args)}` : ''}`);
|
|
306
307
|
try {
|
|
307
308
|
return ok(id, await tool.handler(args));
|
|
308
309
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "infrawise",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"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",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"infrastructure",
|