Fix incus_show_instance command: change 'show' to 'info'

- Replace non-existent 'incus show' command with 'incus info'
- Remove --format json flag as incus info doesn't support it
- Bump version to 0.1.1

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
kappa
2025-08-10 20:19:38 +09:00
parent 79f70682e2
commit 08350c8791
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@ironclads/incus-mcp",
"version": "0.1.0",
"version": "0.1.1",
"description": "MCP server for Incus container management",
"main": "build/index.js",
"type": "module",

View File

@@ -149,7 +149,7 @@ class IncusServer {
}).parse(args);
const instanceName = remote ? `${remote}:${name}` : name;
const output = await execIncusCommand(['show', instanceName, '--format', 'json']);
const output = await execIncusCommand(['info', instanceName]);
return {
content: [