by longyi1207
glean-mcp-server is an MCP server implementation that integrates with the Glean API to provide search and chat functionalities. It is designed to enhance applications and platforms with advanced search capabilities and interactive chatbots.
glean-mcp-server is an MCP (Multi-Cloud Platform) server implementation that integrates with the Glean API. It provides functionalities for searching and chatting.
To use glean-mcp-server, you first need to build its Docker image using the provided Dockerfile. After building, you can integrate it with Claude Desktop by adding specific configurations to your claude_desktop_config.json
file. This configuration includes defining the command to run the Docker container and setting environment variables for GLEAN_API_KEY
and GLEAN_DOMAIN
.
GLEAN_API_KEY
and GLEAN_DOMAIN
for the server to function correctly.An MCP server implementation that integrates the Glean API, providing the Search and Chat functions.
Build the docker image:
docker build -t glean-server:latest -f src/glean/Dockerfile .
Then add this 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"
}
}
}
}
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
Please log in to share your review and rating for this MCP.