| name | mcporter |
| description | List, configure, authenticate, and call MCP servers/tools directly via the mcporter CLI. Use when interacting with MCP (Model Context Protocol) servers, listing available tools, or calling tool endpoints. |
| alwaysInclude | false |
| requiredBins | ["mcporter"] |
| platforms | ["darwin","linux"] |
MCP Porter
Use mcporter to work with MCP (Model Context Protocol) servers directly.
Install
npm install -g mcporter
Quick Start
mcporter list
mcporter list <server> --schema
mcporter call <server.tool> key=value
Calling Tools
mcporter call linear.list_issues team=ENG limit:5
mcporter call "linear.create_issue(title: \"Bug\")"
mcporter call https://api.example.com/mcp.fetch url:https://example.com
mcporter call --stdio "bun run ./server.ts" scrape url=https://example.com
mcporter call <server.tool> --args '{"limit":5}'
Auth and Config
mcporter auth <server | url> [--reset]
mcporter config list|get|add|remove|import|login|logout
Daemon
mcporter daemon start|status|stop|restart
Code Generation
mcporter generate-cli --server <name>
mcporter emit-ts <server> --mode client|types
Notes
- Config default:
./config/mcporter.json (override with --config)
- Prefer
--output json for machine-readable results
- Supports HTTP and stdio transports