# Mcporter Skill

> Use 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.

- Skill: `sundial-org/mcporter-skill` (Agent Skill)
- Install (CLI): `npx skillmds add sundial-org/mcporter-skill`
- Raw SKILL.md: https://api.skillmd.com/api/skills/sundial-org/mcporter-skill/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: sundial-org (https://skillmd.com/u/sundial-org)
- Updated: 2026-09-09
- Page: https://skillmd.com/skills/sundial-org/mcporter-skill

---


# mcporter

Use `mcporter` to manage MCP (Model Context Protocol) servers and tools.

## Requirements
- `mcporter` CLI installed (via Homebrew: `brew install pdxfinder/tap/mcporter`)
- MCP server configuration in `~/.config/mcporter/`

## Common Commands

### List Configured Servers
```bash
mcporter list
```

### Authentication
```bash
mcporter auth --help
```

### Call MCP Tools
```bash
mcporter call <server-name> <tool-name> [arguments...]
```

### Generate CLI/Types
```bash
mcporter generate cli <server-name>
mcporter generate types <server-name>
```

### Config Management
```bash
mcporter config --help
```

## Notes
- mcporter supports both HTTP and stdio MCP servers
- Ad-hoc server creation is supported
- CLI generation creates typed wrappers for MCP tools
- Use `exec` tool to run mcporter commands

