mcacp 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -19,7 +19,7 @@ export async function createServer(configPath) {
19
19
  const permissions = new PermissionEngine();
20
20
  const promptHandler = new PromptHandler(lifecycle, sessions, permissions, config);
21
21
  const agentRequests = new AgentRequestHandler();
22
- const server = new McpServer({ name: 'mcacp', version: '0.1.1' });
22
+ const server = new McpServer({ name: 'mcacp', version: '0.1.2' });
23
23
  permissions.setElicitationSender(async (message, schema) => {
24
24
  const result = await server.server.elicitInput({
25
25
  message,
package/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "mcacp",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
+ "mcpName": "io.github.oortonaut/mcacp",
4
5
  "description": "MCP-to-ACP bridge — let any MCP client drive ACP coding agents",
5
6
  "type": "module",
6
7
  "main": "dist/index.js",