Files
cursor__plugins/plugins/boilerplate/mcp.json
ericzakariasson 5e55a3a3f1 Initial commit: Cursor plugin specification and boilerplate
- 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>
2026-01-22 17:54:49 -08:00

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
}
}
}