Back to MCP directory
publicPublicdnsLocal runtime

Glean

一个集成Glean API的MCP服务器实现,提供搜索和聊天功能。

article

README

🚀 Glean 服务端实现

本项目是一个集成 Glean API 的 MCP 服务器实现,主要提供搜索和聊天两大功能,能为用户带来便捷的信息查询与交互体验。

🚀 快速开始

✨ 主要特性

  • 搜索:根据查询返回搜索结果列表。
  • 聊天:与聊天机器人进行问答交互。

📦 安装指南

使用 Claude Desktop

  1. 构建 Docker 镜像:
docker build -t glean-server:latest -f src/glean/Dockerfile .
  1. 将以下内容添加到你的 claude_desktop_config.json 文件中:
{
  "mcpServers": {
    "glean-server": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "-e",
        "GLEAN_API_KEY",
        "-e",
        "GLEAN_DOMAIN",
        "glean-server"
      ],
      "env": {
        "GLEAN_API_KEY": "YOUR_API_KEY_HERE",
        "GLEAN_DOMAIN": "YOUR_DOMAIN_HERE"
      }
    }
  }
}

📄 许可证

此 MCP 服务器根据 MIT 许可证发布。这意味着你可以自由地使用、修改和分发该软件,但需遵守 MIT 许可证的条款和条件。有关详细信息,请参阅项目存储库中的 LICENSE 文件。

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