Files
laguagu 81525c391b Package the repo as an Agent Plugin (v1.0.0)
The skills/ layout already matched the spec, so this only adds the two
manifests: plugin.json at the root and mcp.json mirroring .mcp.json with
explicit stdio transports. Both validate against the published schemas.

.mcp.json stays for Claude Code — the migration is additive, not a move.

README: document plugin installation, and add ai-sdk-7 and hetzner-cloud,
which shipped without a table entry.
2026-08-10 20:30:41 +03:00

16 lines
372 B
JSON

{
"$schema": "https://agent-plugins.org/schemas/1.0.0/mcp.schema.json",
"mcpServers": {
"next-devtools": {
"type": "stdio",
"command": "npx",
"args": ["-y", "next-devtools-mcp@latest"]
},
"ai-elements": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-remote", "https://registry.ai-sdk.dev/api/mcp"]
}
}
}