mcporter
Original:🇺🇸 English
Translated
Interact with MCP (Model Context Protocol) servers using the mcporter CLI. Use this skill when you need to list available MCP servers, view tool schemas, call MCP tools, manage OAuth authentication, or generate CLI wrappers and TypeScript types for MCP servers.
9installs
Sourcebuildrtech/dotagents
Added on
NPX Install
npx skill4agent add buildrtech/dotagents mcporterTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →mcporter
Use the CLI to interact with MCP servers directly via HTTP or stdio.
mcporterQuick Start
- List available servers:
mcporter list - View tools for a server:
mcporter list <server> --schema - Call a tool:
mcporter call <server.tool> key=value
Calling Tools
Multiple syntaxes are supported for calling MCP tools:
Selector syntax
bash
mcporter call linear.list_issues team=ENG limit:5Function syntax
bash
mcporter call "linear.create_issue(title: \"Bug\")"Full URL
bash
mcporter call https://api.example.com/mcp.fetch url:https://example.comStdio mode (ad-hoc servers)
bash
mcporter call --stdio "bun run ./server.ts" scrape url=https://example.comJSON payload
bash
mcporter call <server.tool> --args '{"limit":5}'Authentication and Configuration
OAuth authentication
bash
mcporter auth <server | url> # Authenticate with a server
mcporter auth <server> --reset # Reset authenticationConfiguration management
bash
mcporter config list # List all configured servers
mcporter config get <key> # Get a config value
mcporter config add <server> # Add a server
mcporter config remove <server> # Remove a server
mcporter config import <file> # Import configuration
mcporter config login # Login to mcporter cloud
mcporter config logout # Logout from mcporter cloudDaemon Management
bash
mcporter daemon start # Start the daemon
mcporter daemon status # Check daemon status
mcporter daemon stop # Stop the daemon
mcporter daemon restart # Restart the daemonCode Generation
Generate CLI wrapper
bash
mcporter generate-cli --server <name>
mcporter generate-cli --command <url>Inspect generated CLI
bash
mcporter inspect-cli <path>
mcporter inspect-cli <path> --json # JSON outputGenerate TypeScript types
bash
mcporter emit-ts <server> --mode client # Generate client code
mcporter emit-ts <server> --mode types # Generate type definitionsTips
- Configuration file defaults to . Override with
./config/mcporter.json.--config <path> - Use for machine-readable output when parsing results programmatically.
--output json - When calling tools, both and
key=valuesyntaxes work for arguments.key:value