Back to MCP directory
publicPublicdnsLocal runtime

mcp-eagle

一个用于与Eagle应用交互的MCP服务器

article

README

🚀 MCP 鹰服务器

MCP 鹰服务器是一个用于与 Eagle 应用接口的模型上下文协议(MCP)服务器,它能实现与 Eagle 应用的有效对接,为相关操作提供支持。

🚀 快速开始

📦 安装指南

安装服务器所需的依赖项:

npm install

🛠️ 构建服务器

执行以下命令来构建服务器:

npm run build

▶️ 启动服务器

使用以下命令启动服务器:

npm start

💻 使用示例

与 Claude Desktop 配合使用

在你的 Claude Desktop 配置文件(~/Library/Application Support/Claude/claude_desktop_config.json)中添加以下内容,以实现与 Claude Desktop 的配合:

{
  "mcpServers": {
    "eagle": {
      "command": "node",
      "args": ["/path/to/mcp-eagle/build/index.js"]
    }
  }
}

✨ 主要特性

🔍 可用工具

  • eagle-status: 检查 Eagle 应用连接状态
help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client