From ee5658fe9fc3aea7214640851283f719c021368d Mon Sep 17 00:00:00 2001 From: iliya Date: Thu, 27 Aug 2026 14:08:21 +0300 Subject: [PATCH 1/2] feat: add Agent Plugins 1.0 package --- agent-plugin/mcp.json | 9 +++++++++ agent-plugin/plugin.json | 13 +++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 agent-plugin/mcp.json create mode 100644 agent-plugin/plugin.json diff --git a/agent-plugin/mcp.json b/agent-plugin/mcp.json new file mode 100644 index 0000000000..86e6bd64a1 --- /dev/null +++ b/agent-plugin/mcp.json @@ -0,0 +1,9 @@ +{ + "$schema": "https://agent-plugins.org/schemas/1.0.0/mcp.schema.json", + "mcpServers": { + "github": { + "type": "streamable-http", + "url": "https://api.githubcopilot.com/mcp/" + } + } +} diff --git a/agent-plugin/plugin.json b/agent-plugin/plugin.json new file mode 100644 index 0000000000..7b1c1b108a --- /dev/null +++ b/agent-plugin/plugin.json @@ -0,0 +1,13 @@ +{ + "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json", + "name": "github-mcp-server", + "description": "Work with GitHub repositories, issues, pull requests, reviews, and code search through MCP.", + "author": { + "name": "GitHub", + "url": "https://github.com/" + }, + "homepage": "https://github.com/github/github-mcp-server", + "repository": "https://github.com/github/github-mcp-server", + "license": "MIT", + "keywords": ["code-search", "github", "issues", "mcp", "pull-requests"] +} From 14092de9940741511d224e0d7071ac02910bda11 Mon Sep 17 00:00:00 2001 From: iliya Date: Thu, 27 Aug 2026 23:52:35 +0300 Subject: [PATCH 2/2] fix: align Agent Plugin package identity --- agent-plugin/plugin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agent-plugin/plugin.json b/agent-plugin/plugin.json index 7b1c1b108a..a7f1f6919c 100644 --- a/agent-plugin/plugin.json +++ b/agent-plugin/plugin.json @@ -1,6 +1,6 @@ { "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json", - "name": "github-mcp-server", + "name": "github", "description": "Work with GitHub repositories, issues, pull requests, reviews, and code search through MCP.", "author": { "name": "GitHub",