From mcp-faster-caller
使用MCP前务必调用的技能,支持 GitHub (gh/repo)、数据库查询 (db/sql)、浏览器自动化 (browser/web)、网页搜索 (search/read)、API文档搜索、图像/PDF 分析 (image/pdf)。中英文皆可,涉及到关键词或别名也可快速触发。
How this skill is triggered — by the user, by Claude, or both
Slash command
/mcp-faster-caller:mcp-faster-callerThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
极简封装 MCP 调用,将原本需要 80-300 token 的 MCP 调用压缩到 10-25 token。
极简封装 MCP 调用,将原本需要 80-300 token 的 MCP 调用压缩到 10-25 token。
解析用户的 MCP 调用指令:$ARGUMENTS
指令格式:<alias> <command> [arguments]
scripts/call_mcp.py 解析指令:
# python3 ~/.claude/skills/mcp-faster-caller/scripts/call_mcp.py "$ARGUMENTS"
python3 ${CLAUDE_PLUGIN_ROOT}/skills/mcp-faster-caller/scripts/call_mcp.py "$ARGUMENTS"
# GitHub 操作
gh list-repos owner=username
# 数据库操作
db query "SELECT * FROM users LIMIT 5"
# 浏览器自动化测试
browser goto https://example.com
npx claudepluginhub sancodeee/sen-claude-hub --plugin mcp-faster-callerProvides a decision tree to prioritize MCP tools over built-in ones and a quick reference for available plugins including PostgreSQL, Redis, Docker, GitHub, Supabase, and semantic memory.
Guides when to use MCP tools over basic tools (Read/Grep/Glob/Bash) for semantic search, AI analysis, research, and image generation. Enforces the search_tools → get_tool_schema → execute_code workflow.
Discovers and invokes MCP server capabilities on-demand using the mcp CLI tool. Useful for one-off calls, testing, and avoiding permanent integration.