Glean MCP Server
An MCP server implementation that integrates with the Glean API, providing search functionality and Q&A chatbot capabilities.
Get this MCP server
An MCP server implementation that integrates with the Glean API, providing search functionality and Q&A chatbot capabilities.
Installation
Docker
docker build -t glean-server:latest -f src/glean/Dockerfile .
Configuration
Claude Desktop
{
"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"
}
}
}
}
Available Tools
| Tool | Description |
|---|---|
Search |
List of search results for a given query |
Chat |
Q&A with chatbot |
Features
- Search functionality via Glean API
- Q&A chatbot capabilities
- Docker-based deployment
Environment Variables
Required
GLEAN_API_KEY- API key for accessing Glean servicesGLEAN_DOMAIN- Domain for accessing Glean API
Notes
Licensed under MIT License. Requires Docker for deployment and Glean API credentials for functionality.