Agent Shortcuts
These undocumented shortcuts are safe for MCP agents to call when they need a quick description of a server or its tools without memorizing the full mcporter CLI surface.
#pnpm mcp call <server>.help
- Alias for
pnpm mcporter:call <server>.help, meant for agents that already rely on the oldpnpm mcp:*helpers. - If
<server>exposes ahelptool, the call behaves exactly like any other tool invocation and streams the tool's content. - When no
helptool exists, the CLI automatically falls back tomcporter list <server>so the agent still sees the server summary, tool signatures, and copy-pasteable examples. - Use
--output jsonif the agent prefers machine-readable summaries; the fallback will mirror that flag.
#mcporter describe <server>
- Hidden synonym for
mcporter list <server>; it prints the same schema-rich output without teaching agents about thelistverb. - Works with any selector the
listcommand accepts (configured names, ad-hochttps://URLs, or--stdio/--http-urlflags). - Pair with
--schemaor--all-parameterswhen an agent needs the full JSON Schema for every tool.
#Recommended Usage
- Agents wanting prose guidance should run
pnpm mcp call chrome-devtools.help. - If the server lacks a
helptool, the command emits a dim hint and then shows thedescribe/listoutput so the agent still learns about the server. - For a guaranteed TypeScript-style summary, skip straight to
mcporter describe chrome-devtools --schema. - Need the tool menu immediately? Call
pnpm mcp call chrome-devtools.list_tools—it’s a shortcut formcporter list chrome-devtools.
Note:
chrome-devtoolscurrently ships without ahelptool, so step 1 always triggers the fallback and prints the same schema-rich output you would see frommcporter list.