Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"name": "session-desktop",
"productName": "Session",
"description": "Private messaging from your desktop",
"version": "1.17.12",
"version": "1.17.12-mcp",
"license": "GPL-3.0",
"author": {
"name": "Session Foundation",
Expand Down Expand Up @@ -74,6 +74,7 @@
"@emoji-mart/react": "https://github.com/session-foundation/session-emoji-mart/releases/download/v5.6.0/emoji-mart-react-v1.1.1.tgz",
"@emotion/is-prop-valid": "1.2.2",
"@emotion/memoize": "0.8.1",
"@modelcontextprotocol/sdk": "^1.27.0",
"@reduxjs/toolkit": "^2.11.1",
"@signalapp/sqlcipher": "3.1.0",
"abort-controller": "3.0.0",
Expand Down Expand Up @@ -104,6 +105,7 @@
"mic-recorder-to-mp3": "^2.2.2",
"node-fetch": "^2.7.0",
"os-locale": "5.0.0",
"human-signals": "1.1.1",
"p-retry": "^4.6.2",
"p-timeout": "4.1.0",
"pino": "^9.6.0",
Expand Down Expand Up @@ -285,7 +287,7 @@
},
"linux": {
"category": "Network;InstantMessaging;Chat",
"target": "deb",
"target": ["deb", "flatpak"],
"icon": "build/icon-linux.icns",
"files": [
"node_modules/@img/sharp-libvips*",
Expand Down
486 changes: 486 additions & 0 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions preload.js
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,10 @@ window.nodeSetImmediate = setImmediate;
const data = require('./ts/data/dataInit');
data.initData();

// Initialize MCP renderer handlers for AI agent integration
const { initMcpRendererHandlers } = require('./ts/mcp/rendererHandlers');
initMcpRendererHandlers();

const { ConvoHub } = require('./ts/session/conversations/ConversationController');

const {
Expand Down
Loading