# glean-mcp-server

> MCP Server

This repository provides a Glean API integrated MCP server, enabling Search and Chat functionalities for applications like Claude Desktop. It uses Docker and requires Glean API key and domain configuration.

## Overview

- **Category:** Search & Knowledge
- **Language:** JavaScript
- **Stars:** 10
- **Forks:** 2
- **Owner:** longyi1207
- **GitHub:** https://github.com/longyi1207/glean-mcp-server
- **Created:** 2025-01-08T05:49:32+00:00
- **Updated:** 2025-03-24T21:58:02+00:00
- **Source:** https://model-context-protocol.com/servers/glean-api-integrated-mcp-search-server

## Setup

## Setup

1.  Build the docker image:

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

2.  Add the following configuration 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"
          }
        }
      }
    }
    ```

## Tools

## Available Tools

		1. Search (List of search results given a query)
		2. Chat (Q&A with Chatbot)
