$npx -y skills add SafeAI-Lab-X/ClawKeeper --skill mcporterUse the mcporter CLI to list, configure, auth, and call MCP servers/tools directly (HTTP or stdio), including ad-hoc servers, config edits, and CLI/type generation.
| 1 | # mcporter |
| 2 | |
| 3 | Use `mcporter` to work with MCP servers directly. |
| 4 | |
| 5 | Quick start |
| 6 | |
| 7 | - `mcporter list` |
| 8 | - `mcporter list <server> --schema` |
| 9 | - `mcporter call <server.tool> key=value` |
| 10 | |
| 11 | Call tools |
| 12 | |
| 13 | - Selector: `mcporter call linear.list_issues team=ENG limit:5` |
| 14 | - Function syntax: `mcporter call "linear.create_issue(title: \"Bug\")"` |
| 15 | - Full URL: `mcporter call https://api.example.com/mcp.fetch url:https://example.com` |
| 16 | - Stdio: `mcporter call --stdio "bun run ./server.ts" scrape url=https://example.com` |
| 17 | - JSON payload: `mcporter call <server.tool> --args '{"limit":5}'` |
| 18 | |
| 19 | Auth + config |
| 20 | |
| 21 | - OAuth: `mcporter auth <server | url> [--reset]` |
| 22 | - Config: `mcporter config list|get|add|remove|import|login|logout` |
| 23 | |
| 24 | Daemon |
| 25 | |
| 26 | - `mcporter daemon start|status|stop|restart` |
| 27 | |
| 28 | Codegen |
| 29 | |
| 30 | - CLI: `mcporter generate-cli --server <name>` or `--command <url>` |
| 31 | - Inspect: `mcporter inspect-cli <path> [--json]` |
| 32 | - TS: `mcporter emit-ts <server> --mode client|types` |
| 33 | |
| 34 | Notes |
| 35 | |
| 36 | - Config default: `./config/mcporter.json` (override with `--config`). |
| 37 | - Prefer `--output json` for machine-readable results. |