manifest.json•1.03 kB
{
"name": "Sketch Context MCP",
"identifier": "com.sketch-context-mcp.plugin",
"version": "1.0",
"description": "Connect Sketch to Cursor AI using Model Context Protocol (MCP)",
"author": "Sketch Context MCP",
"authorEmail": "joshua@jshmllr.com",
"compatibleVersion": "70.0",
"bundleVersion": 1,
"icon": "icon.png",
"commands": [
{
"script": "script.js",
"handler": "onRun",
"shortcut": "cmd shift m",
"name": "Open MCP Interface",
"identifier": "open-mcp-interface"
},
{
"script": "script.js",
"handler": "onCopySelectionIds",
"shortcut": "ctrl shift i",
"name": "Copy Selection IDs",
"identifier": "copy-selection-ids"
}
],
"menu": {
"title": "Sketch Context MCP",
"items": [
"open-mcp-interface",
"copy-selection-ids"
]
},
"resources": [
"UI.html"
],
"disableCocoaScriptPreprocessor": true,
"appcast": "https://raw.githubusercontent.com/yourusername/sketch-context-mcp/master/.appcast.xml"
}