fix: correct mcp-cli skill command syntax and add installation guide#617
Open
AungMyoKyaw wants to merge 6 commits intogithub:mainfrom
Open
fix: correct mcp-cli skill command syntax and add installation guide#617AungMyoKyaw wants to merge 6 commits intogithub:mainfrom
AungMyoKyaw wants to merge 6 commits intogithub:mainfrom
Conversation
- Add homepage field to skill frontmatter - Add Prerequisites section with installation instructions - Add configuration example for mcp_servers.json - Fix command syntax: add missing 'info' and 'call' subcommands - Update all examples to use correct 'mcp-cli info' and 'mcp-cli call' syntax - Clarify that both space and / separator formats work - Update workflow section with correct commands Fixes issue where mcp-cli SKILL.md had inaccurate command syntax and was missing installation/source information.
Contributor
There was a problem hiding this comment.
Pull request overview
This PR improves the mcp-cli skill documentation by adding installation instructions and correcting command syntax throughout the file. The changes address issue #612 which reported missing installation information and inaccurate command examples.
Changes:
- Added homepage metadata to frontmatter and Prerequisites section with installation/configuration instructions
- Fixed command syntax by adding missing
infoandcallsubcommands throughout documentation - Updated all usage examples to reflect correct CLI syntax
aaronpowell
requested changes
Jan 28, 2026
Co-authored-by: Aaron Powell <me@aaron-powell.com>
The mcp-cli skill documentation is being corrected and will be re-added once the command syntax and installation guide are properly documented.
nblog
reviewed
Feb 2, 2026
Comment on lines
+40
to
+45
| "github": { | ||
| "command": "npx", | ||
| "args": ["-y", "@modelcontextprotocol/server-github"] | ||
| } | ||
| } | ||
| } |
There was a problem hiding this comment.
this mcp was not used, and @modelcontextprotocol/server-github project has been archived.
Contributor
There was a problem hiding this comment.
@AungMyoKyaw that's a good point from @nblog, probably best not to have the skill referencing a deprecated mcp server, even if it's for illustrative purposes.
| } | ||
| ``` | ||
|
|
||
| **Documentation:** https://github.com/philschmid/mcp-cli |
There was a problem hiding this comment.
already included in homepage; no need for further repetition.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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