fix: correct mcp-cli skill command syntax and add installation guide #617
+60
−19
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
infoandcallsubcommandsProblem
When using the skill described in
skills/mcp-cli/SKILL.md, there were two issues:mcp-clicommand comes from or how to install itinfoandcallsubcommands, showing syntax likemcp-cli filesystem/read_fileinstead of the correctmcp-cli info filesystem read_fileandmcp-cli call filesystem read_file '{...}'Fixes: #612
Issue reference: #612 (comment)
Changes
Installation & Configuration
homepagefield to frontmatter:https://github.com/philschmid/mcp-clicurl -fsSL https://raw.githubusercontent.com/philschmid/mcp-cli/main/install.sh | bashbun install -g https://github.com/philschmid/mcp-climcp_servers.jsonCommand Syntax Fixes
Updated all commands to include proper subcommands:
mcp-cli info <server> <tool>for viewing tool schemasmcp-cli call <server> <tool> '<json>'for calling toolsinfo <server> <tool>orinfo <server>/<tool>"Files Changed
skills/mcp-cli/SKILL.md: Added installation guide and fixed all command syntaxTesting
Verified commands against the official mcp-cli README to ensure accuracy.
Checklist