From 179492f158df88f64444d5a8feb9de41fc8cc4c7 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 27 Aug 2026 18:41:28 +0000 Subject: [PATCH] Add Agent Plugin manifests for Cursor Directory submission Package the repo as an Agent Plugin v1 (plugin.json + mcp.json declaring the remote streamable-http server at mcp.glideapps.dev/mcp), the format cursor.directory/plugins/new expects. Both manifests validate against the official 1.0.0 schemas. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01Hf8GUzDyTQvXt6o7suqa4u --- README.md | 4 +++- mcp.json | 9 +++++++++ plugin.json | 14 ++++++++++++++ 3 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 mcp.json create mode 100644 plugin.json 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"] +}