by longyi1207
Provides Search and Chat capabilities via the Glean API as an MCP server.
Glean implements an MCP server that connects to the Glean API, exposing two primary tools: a Search tool that returns a list of results for a given query, and a Chat tool that enables Q&A interactions with a chatbot.
docker build -t glean-server:latest -f src/glean/Dockerfile .
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"
}
}
}
}
Q: What credentials are required?
A: You need a Glean API key (GLEAN_API_KEY
) and the domain associated with your Glean instance (GLEAN_DOMAIN
).
Q: Can I run the server without Docker? A: The repository currently provides a Dockerfile for the recommended deployment path. Custom runtimes would require porting the code.
Q: Which client platforms are supported? A: Any MCP‑compatible client (e.g., Claude Desktop) that can invoke the defined tools.
Q: Is the source code open‑source? A: Yes, the project is licensed under the MIT License.
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.
Explore related MCPs that share similar capabilities and solve comparable challenges
by exa-labs
Provides real-time web search capabilities to AI assistants via a Model Context Protocol server, enabling safe and controlled access to the Exa AI Search API.
by elastic
Enables natural‑language interaction with Elasticsearch indices via the Model Context Protocol, exposing tools for listing indices, fetching mappings, performing searches, running ES|QL queries, and retrieving shard information.
by graphlit
Enables integration between MCP clients and the Graphlit platform, providing ingestion, extraction, retrieval, and RAG capabilities across a wide range of data sources and connectors.
by mamertofabian
Fast cross‑platform file searching leveraging the Everything SDK on Windows, Spotlight on macOS, and locate/plocate on Linux.
by cr7258
Provides Elasticsearch and OpenSearch interaction via Model Context Protocol, enabling document search, index management, cluster monitoring, and alias operations.
by liuyoshio
Provides natural‑language search and recommendation for Model Context Protocol servers, delivering rich metadata and real‑time updates.
by ihor-sokoliuk
Provides web search capabilities via the SearXNG API, exposing them through an MCP server for seamless integration with AI agents and tools.
by fatwang2
Provides web and news search, URL crawling, sitemap extraction, deep‑reasoning, and trending topic retrieval via Search1API, exposed as an MCP server for integration with AI clients.
by cnych
Provides SEO data retrieval via Ahrefs, exposing MCP tools for backlink analysis, keyword generation, traffic estimation, and keyword difficulty, with automated CAPTCHA solving and response caching.