MCP HubMCP Hub
longyi1207

glean-mcp-server

by: longyi1207

glean mcp server

6created 08/01/2025
Visit
glean

📌Overview

Purpose: To provide an MCP server implementation that leverages the Glean API for efficient Search and Chat functions.

Overview: Glean serves as an MCP server that incorporates the Glean API, enabling users to access powerful search capabilities and interactive chat functionalities through a straightforward interface, making it ideal for applications requiring quick information retrieval and Q&A interactions.

Key Features:

  • Search: Offers a comprehensive list of search results based on user queries, enhancing the ability to retrieve pertinent information quickly and efficiently.

  • Chat: Facilitates a question-and-answer interaction with a chatbot, providing users with immediate responses to inquiries and improving user engagement through conversational AI.


Glean

An MCP server implementation that integrates the Glean API, providing Search and Chat functions.

Tools

  • Search: List of search results given a query
  • Chat: Q&A with Chatbot

Usage with Claude Desktop

Build the docker image:

docker build -t glean-server:latest -f src/glean/Dockerfile .

Add the following to your 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"
      }
    }
  }
}

License

This MCP server is licensed under the MIT License. You are free to use, modify, and distribute the software under the terms of the MIT License. See the LICENSE file in the project repository for details.