-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.49 KB
/
Copy pathpackage.json
File metadata and controls
93 lines (93 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "notebook-mcp-server",
"displayName": "Native Jupyter Notebook MCP Server",
"description": "Expose VS Code Jupyter notebooks as MCP tools: read/edit/run cells and capture outputs (Cursor, Claude Code, Windsurf).",
"version": "0.3.0",
"publisher": "olavovieiradecarvalho",
"license": "MIT",
"icon": "images/icon.png",
"repository": {
"type": "git",
"url": "https://github.com/olavocarvalho/vscode-runtime-notebook-mcp"
},
"homepage": "https://github.com/olavocarvalho/vscode-runtime-notebook-mcp#readme",
"bugs": {
"url": "https://github.com/olavocarvalho/vscode-runtime-notebook-mcp/issues"
},
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Notebooks",
"Data Science",
"AI"
],
"keywords": [
"mcp",
"model-context-protocol",
"jupyter",
"notebook",
"ipynb",
"cursor",
"claude",
"claude-code",
"ai agent",
"data science",
"python",
"kernel"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "notebook-mcp.startServer",
"title": "Start Notebook MCP Server"
}
],
"configuration": {
"title": "Notebook MCP Server",
"properties": {
"notebook-mcp.port": {
"type": "number",
"default": 49777,
"minimum": 1024,
"maximum": 65535,
"description": "Port number for the MCP server (default: 49777)"
}
}
}
},
"extensionDependencies": [
"ms-toolsai.jupyter"
],
"scripts": {
"vscode:prepublish": "npm run build",
"build": "esbuild src/extension.ts --bundle --outfile=dist/extension.js --external:vscode --format=cjs --platform=node --sourcemap",
"watch": "npm run build -- --watch",
"lint": "eslint src --ext ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "npm run build && npm run build:e2e && vscode-test",
"test:e2e:watch": "npm run build:e2e && vscode-test --watch 'out-e2e/**/*.js'",
"build:e2e": "tsc -p ./test/e2e/tsconfig.json",
"package": "vsce package"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^20.11.0",
"@types/vscode": "^1.85.0",
"@vscode/test-cli": "^0.0.12",
"@vscode/test-electron": "^2.5.2",
"esbuild": "^0.20.0",
"mocha": "^11.7.5",
"typescript": "^5.4.0",
"vitest": "^4.0.16"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.6.1",
"zod": "^3.23.8"
}
}