openmcp-client/package.json
2025-03-22 23:34:21 +08:00

36 lines
867 B
JSON

{
"name": "openmcp",
"displayName": "openmcp",
"description": "A MCP Client for MCP/OpenMCP",
"version": "0.0.1",
"engines": {
"vscode": "^1.98.0"
},
"categories": [
"Other"
],
"activationEvents": [
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "openmcp-sidebar",
"title": "OpenMCP",
"icon": "./icons/protocol.svg"
}
]
},
"views": {
"openmcp-sidebar": [
{
"id": "webview-sidebar.view",
"icon": "./icons/protocol.svg",
"name": "chatbot",
"type": "webview"
}
]
}
}
}