mirror of
https://github.com/laguagu/claude-code-nextjs-skills.git
synced 2026-09-14 20:16:51 +08:00
81525c391b
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.
16 lines
372 B
JSON
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"]
|
|
}
|
|
}
|
|
}
|