mirror of
https://github.com/cursor/plugins.git
synced 2026-09-14 20:00:00 +08:00
5e55a3a3f1
- Add plugin specification README with complete schema documentation - Include boilerplate plugin demonstrating all components: - Rules (.mdc files with frontmatter) - Agents (specialized subagent definitions) - Skills (self-contained capabilities with SKILL.md) - Hooks (pre/post event automation) - MCP servers (external tool integrations) - Extensions directory structure Co-authored-by: Cursor <cursoragent@cursor.com>
20 lines
471 B
JSON
20 lines
471 B
JSON
{
|
|
"$schema": "https://cursor.com/schemas/mcp.json",
|
|
"mcpServers": {
|
|
"example-server": {
|
|
"command": "node",
|
|
"args": ["./scripts/mcp-server.js"],
|
|
"description": "Example MCP server for demonstration",
|
|
"env": {
|
|
"NODE_ENV": "production"
|
|
}
|
|
},
|
|
"external-api": {
|
|
"command": "npx",
|
|
"args": ["-y", "@example/mcp-server"],
|
|
"description": "External API integration via MCP",
|
|
"disabled": true
|
|
}
|
|
}
|
|
}
|