| name | mcporter |
| description | Discover and call MCP Server tools via the mcporter CLI. Use when your coordinator notifies you about new MCP tools, or when you need to call external APIs. Includes workflow for generating skill documentation for new MCP servers. |
mcporter — MCP Tool CLI
You call MCP Server tools via mcporter. Your config is at /home/openhuman/.openhuman/config/mcporter.json (mcporter's default path — no --config flag needed).
Commands
mcporter list
mcporter list <server-name> --schema
mcporter call <server-name>.<tool-name> key=value key2=value2
mcporter call <server-name>.<tool-name> --args '{"key":"value","count":5}'
Output is JSON — parse with jq when needed.
When Your Coordinator Notifies You About New MCP Tools
When your coordinator @mentions you saying a new MCP server has been configured, follow this workflow:
Step 1: Pull the updated config
Run your file-sync skill to pull the latest files from MinIO.
Step 2: Discover the new server and its tools
mcporter list
mcporter list <server-name> --schema
Step 3: Generate a skill for the new MCP server
After understanding the tools, create a skill directory and SKILL.md so you have a permanent reference:
mkdir -p /home/openhuman/.openhuman/skills/<server-short-name>-operations
Then write /home/openhuman/.openhuman/skills/<server-short-name>-operations/SKILL.md with:
- Front-matter:
name, description, assign_when
- Overview section explaining what the MCP server does
- For each tool: a section with description, example
mcporter call command, and parameter notes
- Important notes (rate limits, auth, known issues if any)
Step 4: Confirm to your coordinator
After generating the skill, reply to your coordinator confirming:
- You pulled the updated config
- You discovered N tools on the new server
- You generated a skill at the new path
- You're ready to use the new tools
Important Notes
- Not installed? If
mcporter command is not found, install it: npm install -g mcporter
- Transport: MCP Servers use HTTP transport (configured in config/mcporter.json)
- Auth: Authorization header with Bearer token is auto-configured — you don't need to manage credentials
- Permissions: Your MCP access is controlled by your coordinator. If you get 403 from the MCP Server, ask your coordinator to re-authorize your access
- Config not found: If
/home/openhuman/.openhuman/config/mcporter.json doesn't exist yet, use your file-sync skill first — your coordinator pushes the config to MinIO after setting up MCP servers