Loading...
Loading...
Inspect and call MCP server tools from the command line with MCPorter. Use when a task needs an MCP tool (search, docs, integrations) or when checking which MCP servers and tools are available.
npx skill4agent add zlliang/skills mcportermcporterlistcalllistcallmcporter <command> --help~/.mcporter/mcporter.json./config/mcporter.json--config <path>mcporter config listmcporter list --verbose# 1. See configured servers and their health
mcporter list
# 2. Read one server's tools as TypeScript-like signatures
mcporter list <server>
# 3. Call a tool using the signature from step 2
mcporter call '<server>.<tool>(arg: "value", count: 5)'listmcporter list # All servers, with live status
mcporter list <server> # Tools for one server, as signatures
mcporter list <server> --schema # Raw JSON schema for each tool
mcporter list <server> --json # Machine-readable, full tool metadata
mcporter list <server> --all-parameters # Reveal hidden optional paramsfunction name(...)?Examples:--all-parameters--schemafunction web_search_exa(query: string, numResults?: number);callmcporter listmcporter call 'exa.web_search_exa(query: "best React state libraries", numResults: 5)'
mcporter call 'linear.create_comment(issueId: "ENG-123", body: "Looks good!")'--output json{ server, tool, issue }mcporter call 'exa.web_search_exa(query: "...")' --output json# Shell-friendly key/value pairs (good in scripts)
mcporter call linear.list_issues team=ENG limit:5
# Prebuilt JSON payload (or `--json -` to read from stdin)
mcporter call linear.create_issue --json '{"title":"Bug","team":"ENG"}'
# Read a long string argument from a file
mcporter call linear.create_comment issueId=LNR-123 body=@comment.mdlistcallmcporter list https://mcp.linear.app/mcp
mcporter call 'https://www.shadcn.io/api/mcp.getComponent(component: "vortex")'
mcporter list --stdio "bun run ./server.ts" --env TOKEN=xyzhttps://http://--allow-http--persist <config>LINEAR_API_KEY=… mcporter call 'linear.search_documentation(query: "automations")'authconfigresourcedaemongenerate-cliemit-tsmcporter --help