Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help


title: “Mcporter” sidebar_label: “Mcporter” description: “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 gene…”

{/* 本页面由 website/scripts/generate-skill-docs.py 根据技能对应的 SKILL.md 文件自动生成。请直接编辑源文件 SKILL.md,而非此页面。 */}

Mcporter

使用 mcporter CLI 可以直接列出、配置、认证以及调用 MCP 服务器/工具(通过 HTTP 或标准输入输出方式),支持临时服务器的创建、配置文件的修改以及 CLI/类型生成等功能。

技能元数据

来源可选 —— 使用 hermes skills install official/mcp/mcporter 安装
路径optional-skills/mcp/mcporter
版本1.0.0
开发者社区
许可证MIT
支持平台linux、macos、windows
标签MCPToolsAPIIntegrationsInterop

参考:完整的 SKILL.md 文件

:::info 以下是当触发该技能时 Hermes 会加载的完整技能定义。技能处于激活状态时,智能体看到的指令即为此内容。
::

mcporter

使用 mcporter 可以直接从终端发现、调用并管理 MCP(模型上下文协议) 服务器及工具。

先决条件

需要安装 Node.js:

# No install needed (runs via npx)
npx mcporter list

# Or install globally
npm install -g mcporter

快速入门

# List MCP servers already configured on this machine
mcporter list

# List tools for a specific server with schema details
mcporter list <server> --schema

# Call a tool
mcporter call <server.tool> key=value

发现 MCP 服务器

mcporter 能自动检测本地系统中其他 MCP 客户端(如 Claude Desktop、Cursor 等)所配置的服务器。若要寻找新的可用服务器,可浏览 mcpfinder.devmcp.so 等注册表,随后即可进行临时连接:

# Connect to any MCP server by URL (no config needed)
mcporter list --http-url https://some-mcp-server.com --name my_server

# Or run a stdio server on the fly
mcporter list --stdio "npx -y @modelcontextprotocol/server-filesystem" --name fs

调用工具

# Key=value syntax
mcporter call linear.list_issues team=ENG limit:5

# Function syntax
mcporter call "linear.create_issue(title: \"Bug fix needed\")"

# Ad-hoc HTTP server (no config needed)
mcporter call https://api.example.com/mcp.fetch url=https://example.com

# Ad-hoc stdio server
mcporter call --stdio "bun run ./server.ts" scrape url=https://example.com

# JSON payload
mcporter call <server.tool> --args '{"limit": 5}'

# Machine-readable output (recommended for Hermes)
mcporter call <server.tool> key=value --output json

认证与配置

# OAuth login for a server
mcporter auth <server | url> [--reset]

# Manage config
mcporter config list
mcporter config get <key>
mcporter config add <server>
mcporter config remove <server>
mcporter config import <path>

配置文件位置:./config/mcporter.json(可通过 --config 参数进行覆盖)。

守护进程

用于保持服务器连接的持久化连接:

mcporter daemon start
mcporter daemon status
mcporter daemon stop
mcporter daemon restart

代码生成

# Generate a CLI wrapper for an MCP server
mcporter generate-cli --server <name>
mcporter generate-cli --command <url>

# Inspect a generated CLI
mcporter inspect-cli <path> [--json]

# Generate TypeScript types/client
mcporter emit-ts <server> --mode client
mcporter emit-ts <server> --mode types

备注

  • 若需结构化输出以便于解析,请使用 --output json 选项。
  • 临时服务器(HTTP 地址或 --stdio 命令)无需任何配置即可使用,非常适合一次性调用场景。
  • OAuth 认证可能需要通过浏览器进行交互式验证——如有需要,可使用 terminal(command="mcporter auth <server>", pty=true) 命令。