Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
philschmid avatar

Mcp Cli

  • 386 installs
  • 1.2k repo stars
  • Updated February 5, 2026
  • philschmid/mcp-cli

Helps with ai & agent building tasks.

About

mcp-cli is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted development.

  • mcp-cli
  • AI & Agent Building
  • AI-coding skill

Mcp Cli by the numbers

  • 386 all-time installs (skills.sh)
  • +64 installs in the week ending Aug 4, 2026 (Skillselion tracking)
  • Ranked #2,019 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/philschmid/mcp-cli --skill mcp-cli

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs386
repo stars1.2k
Last updatedFebruary 5, 2026
Repositoryphilschmid/mcp-cli

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

MCP-CLI

Access MCP servers through the command line. MCP enables interaction with external systems like GitHub, filesystems, databases, and APIs.

Commands

CommandOutput
mcp-cliList all servers and tools
mcp-cli info <server>Show server tools and parameters
mcp-cli info <server> <tool>Get tool JSON schema
mcp-cli grep "<pattern>"Search tools by name
mcp-cli call <server> <tool>Call tool (reads JSON from stdin if no args)
mcp-cli call <server> <tool> '<json>'Call tool with arguments

Both formats work: <server> <tool> or <server>/<tool>

Workflow

1. Discover: mcp-cli → see available servers 2. Explore: mcp-cli info <server> → see tools with parameters 3. Inspect: mcp-cli info <server> <tool> → get full JSON schema 4. Execute: mcp-cli call <server> <tool> '<json>' → run with arguments

Examples

# List all servers
mcp-cli

# With descriptions  
mcp-cli -d

# See server tools
mcp-cli info filesystem

# Get tool schema (both formats work)
mcp-cli info filesystem read_file
mcp-cli info filesystem/read_file

# Call tool
mcp-cli call filesystem read_file '{"path": "./README.md"}'

# Pipe from stdin (no '-' needed!)
cat args.json | mcp-cli call filesystem read_file

# Search for tools
mcp-cli grep "*file*"

# Output is raw text (pipe-friendly)
mcp-cli call filesystem read_file '{"path": "./file"}' | head -10

Advanced Chaining

# Chain: search files → read first match
mcp-cli call filesystem search_files '{"path": ".", "pattern": "*.md"}' \
  | head -1 \
  | xargs -I {} mcp-cli call filesystem read_file '{"path": "{}"}'

# Loop: process multiple files
mcp-cli call filesystem list_directory '{"path": "./src"}' \
  | while read f; do mcp-cli call filesystem read_file "{\"path\": \"$f\"}"; done

# Conditional: check before reading
mcp-cli call filesystem list_directory '{"path": "."}' \
  | grep -q "README" \
  && mcp-cli call filesystem read_file '{"path": "./README.md"}'

# Multi-server aggregation
{
  mcp-cli call github search_repositories '{"query": "mcp", "per_page": 3}'
  mcp-cli call filesystem list_directory '{"path": "."}'
}

# Save to file
mcp-cli call github get_file_contents '{"owner": "x", "repo": "y", "path": "z"}' > output.txt

Note: call outputs raw text content directly (no jq needed for text extraction)

Options

FlagPurpose
-dInclude descriptions
-c <path>Specify config file

Common Errors

Wrong CommandErrorFix
mcp-cli server toolAMBIGUOUS_COMMANDUse call server tool or info server tool
mcp-cli run server toolUNKNOWN_SUBCOMMANDUse call instead of run
mcp-cli listUNKNOWN_SUBCOMMANDUse info instead of list
mcp-cli call serverMISSING_ARGUMENTAdd tool name
mcp-cli call server tool {bad}INVALID_JSONUse valid JSON with quotes

Exit Codes

  • 0: Success
  • 1: Client error (bad args, missing config)
  • 2: Server error (tool failed)
  • 3: Network error

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.