askill
mcporter

mcporterSafety 95Repository

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.

6 stars
1.2k downloads
Updated 2/22/2026

Package Files

Loading files...
SKILL.md

mcporter

Use the mcporter CLI to interact with MCP servers directly via HTTP or stdio.

Quick Start

  1. List available servers: mcporter list
  2. View tools for a server: mcporter list <server> --schema
  3. Call a tool: mcporter call <server.tool> key=value

Calling Tools

Multiple syntaxes are supported for calling MCP tools:

Selector syntax

mcporter call linear.list_issues team=ENG limit:5

Function syntax

mcporter call "linear.create_issue(title: \"Bug\")"

Full URL

mcporter call https://api.example.com/mcp.fetch url:https://example.com

Stdio mode (ad-hoc servers)

mcporter call --stdio "bun run ./server.ts" scrape url=https://example.com

JSON payload

mcporter call <server.tool> --args '{"limit":5}'

Authentication and Configuration

OAuth authentication

mcporter auth <server | url>        # Authenticate with a server
mcporter auth <server> --reset      # Reset authentication

Configuration management

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 cloud

Daemon Management

mcporter daemon start               # Start the daemon
mcporter daemon status              # Check daemon status
mcporter daemon stop                # Stop the daemon
mcporter daemon restart             # Restart the daemon

Code Generation

Generate CLI wrapper

mcporter generate-cli --server <name>
mcporter generate-cli --command <url>

Inspect generated CLI

mcporter inspect-cli <path>
mcporter inspect-cli <path> --json  # JSON output

Generate TypeScript types

mcporter emit-ts <server> --mode client   # Generate client code
mcporter emit-ts <server> --mode types    # Generate type definitions

Tips

  • Configuration file defaults to ./config/mcporter.json. Override with --config <path>.
  • Use --output json for machine-readable output when parsing results programmatically.
  • When calling tools, both key=value and key:value syntaxes work for arguments.

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

80/100Analyzed 2/24/2026

Well-structured skill document for the mcporter CLI tool with clear usage examples, multiple command syntaxes, and organized sections covering tool calling, authentication, daemon management, and code generation. Includes useful metadata (homepage, tags) and clear trigger conditions. Somewhat narrowly focused on a specific CLI tool but provides comprehensive coverage for that tool's functionality.

95
85
72
70
88

Metadata

Licenseunknown
Version-
Updated2/22/2026
Publishermikeastock

Tags

apisecurity