Merge pull request #690 from voideditor/mcp

1.4.0 - MCP!
This commit is contained in:
Andrew Pareles 2025-05-30 21:16:08 -07:00 committed by GitHub
commit 374e6c7109
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -1,8 +1,8 @@
{
"nameShort": "Void",
"nameLong": "Void",
"voidVersion": "1.3.10",
"voidRelease": "0034",
"voidVersion": "1.4.0",
"voidRelease": "0035",
"applicationName": "void",
"dataFolderName": ".void-editor",
"win32MutexName": "voideditor",

View file

@ -88,7 +88,7 @@ class MCPService extends Disposable implements IMCPService {
const onEvent = (e: MCPServerEventResponse) => {
console.log('GOT EVENT', e)
// console.log('GOT EVENT', e)
this._setMCPServerState(e.response.name, e.response.newServer)
}
this._register((this.channel.listen('onAdd_server') satisfies Event<MCPServerEventResponse>)(onEvent));

View file

@ -195,7 +195,7 @@ export class MCPChannel implements IServerChannel {
}
}
} else if (server.command) {
console.log('ENV DATA: ', server.env)
// console.log('ENV DATA: ', server.env)
transport = new StdioClientTransport({
command: server.command,
args: server.args,