https://github.com/longyi1207/glean-mcp-server
https://github.com/longyi1207/glean-mcp-server
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/longyi1207/glean-mcp-server
- Owner: longyi1207
- Created: 2025-01-08T05:49:32.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-01-08T06:15:37.000Z (4 months ago)
- Last Synced: 2025-01-08T07:24:03.533Z (4 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-mcp-servers - Glean - Provides search and chatbot functionality via a Glean API-integrated MCP server (Table of Contents / Search)
- awesome-mcp-servers - Glean - Provides search and chatbot functionality via a Glean API-integrated MCP server (Table of Contents / Search)
README
# Glean
An MCP server implementation that integrates the Glean API, providing the 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:
```bash
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"
}
}
}
}
```## License
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.