diff --git a/README.md b/README.md index f4f1bae..df157e3 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,8 @@ Or add to `~/.cursor/mcp.json`: } ``` +This repository is also packaged as an [Agent Plugin](https://agent-plugins.org) (`plugin.json` + `mcp.json`), the format behind [Cursor's plugin directory](https://cursor.directory/plugins). + ### VS Code ```bash @@ -76,7 +78,7 @@ In **Settings → Connectors**, add a custom connector with the URL `https://mcp - Glide documentation: https://www.glideapps.com/docs - Product questions and account help: https://www.glideapps.com/support -- Bugs in the Gemini CLI extension or errors in this README: open an issue on this repository +- Bugs in the Gemini CLI extension or Agent Plugin manifests, or errors in this README: open an issue on this repository ## License diff --git a/mcp.json b/mcp.json new file mode 100644 index 0000000..db35102 --- /dev/null +++ b/mcp.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://agent-plugins.org/schemas/1.0.0/mcp.schema.json", + "mcpServers": { + "glide": { + "type": "streamable-http", + "url": "https://mcp.glideapps.dev/mcp" + } + } +} diff --git a/plugin.json b/plugin.json new file mode 100644 index 0000000..9783fb8 --- /dev/null +++ b/plugin.json @@ -0,0 +1,14 @@ +{ + "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json", + "name": "glide", + "version": "1.0.1", + "description": "Glide's official MCP server — build, manage, and operate GlideOS apps, data, and workflows.", + "author": { + "name": "Glide", + "url": "https://www.glideapps.com" + }, + "homepage": "https://www.glideapps.com/docs/os/mcp", + "repository": "https://github.com/glideapps/mcp", + "license": "MIT", + "keywords": ["glide", "glideos", "apps", "no-code", "database", "workflows", "automation"] +}