https://github.com/gleanwork/glean-openvsx-extension
Glean OpenVSX extension for Cursor, Windsurf, and Antigravity
https://github.com/gleanwork/glean-openvsx-extension
Last synced: 15 days ago
JSON representation
Glean OpenVSX extension for Cursor, Windsurf, and Antigravity
- Host: GitHub
- URL: https://github.com/gleanwork/glean-openvsx-extension
- Owner: gleanwork
- License: mit
- Created: 2026-02-25T01:11:38.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-03-20T16:36:30.000Z (4 months ago)
- Last Synced: 2026-03-21T08:04:52.004Z (4 months ago)
- Language: TypeScript
- Homepage: https://open-vsx.org/extension/glean/glean
- Size: 254 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Glean OpenVSX Extension
Brings Glean's AI-powered search and knowledge tools directly into Cursor, Windsurf, and Antigravity, so you can find company information without leaving your editor.
## Configuration
The extension needs a Glean MCP server URL to connect to. It looks for this in the following order, using the first valid URL it finds:
1. **Extension setting** — Set `Glean: Mcp Server Url` in your editor's settings page (`Settings > Extensions > Glean`). When set, this takes priority over all config files.
2. **System config file (MDM-managed)** — Placed by your IT admin via an MDM script (Jamf, Intune, etc.). This is the typical setup for managed devices and requires no action from the user.
| Platform | Path |
|----------|------|
| macOS | `/Library/Application Support/Glean MDM/mcp-config.json` |
| Windows | `%PROGRAMDATA%\Glean MDM\mcp-config.json` |
| Linux | `/etc/glean_mdm/mcp-config.json` |
3. **User config file** — For non-managed or development scenarios, place a config file at `~/.glean_mdm/mcp-config.json`.
Config files use the following format:
```json
{
"serverName": "glean-default",
"url": "https://your-instance.glean.com/mcp/default"
}
```