Replies: 2 comments 2 replies
-
|
Like the idea but this may belong to a different project unless I'm missing something. |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
What about extending the MCP protocol itself so that the sever can expose skills natively? Similar to how a server can expose resources. Your concept of a I'm able to hack this now by creating a local MCP server that installs the relevant skills in the project at startup, but it would be much more elegant if the protocol supported this natively |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Pre-submission Checklist
Your Idea
The MCP registry does a great job enabling discovery and distribution of MCP servers via
server.json. I'd like to propose extending this to cover Agent Skills - the open format for extending AI agents with specialized capabilities.Agent Skills have seen rapid adoption across tools (Claude Code, Cursor, VS Code/Copilot, Codex, etc.), but there's no standardized way to discover and distribute them through a registry. Skills are currently shared via git repos or manual copying.
Proposal:
skills.jsonA registry entry format for skills, inspired by
server.jsonbut adapted for the Agent Skills spec. Here's a minimal example:{ "namespace": "io.github.bob", "name": "hello-world", "description": "A simple example skill that greets users.", "version": "0.1.0", "packages": [ { "registryType": "git", "url": "https://github.com/bob/hello-world-skill.git", "ref": "main" } ] }Design notes
The format borrows heavily from what the MCP registry already does well:
namespace/nameidentity with reverse-DNS (so existing auth/ownership verification works)Why extend the registry?
I have a more complete spec with JSON Schema, but wanted to gauge interest first. Happy to share details or iterate based on feedback.
Scope
Beta Was this translation helpful? Give feedback.
All reactions