File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -35,5 +35,3 @@ __pycache__/
3535* .pyo
3636* .pyd
3737.Python
38-
39- mcp /
Original file line number Diff line number Diff line change @@ -631,7 +631,8 @@ export class ActorsMcpServer {
631631 const mcpSessionId = typeof request . params . mcpSessionId === 'string' ? request . params . mcpSessionId : undefined ;
632632 if ( ! mcpSessionId ) {
633633 log . error ( 'MCP Session ID is missing in tool call request. This should never happen.' ) ;
634- throw new Error ( 'MCP Session ID is required for tool calls' ) ;
634+ // TEMP: do not throw for now as it causes issues with stdio transport
635+ // throw new Error('MCP Session ID is required for tool calls');
635636 }
636637 // Remove apifyToken from request.params just in case
637638 delete request . params . apifyToken ;
Original file line number Diff line number Diff line change @@ -205,9 +205,10 @@ Actor description: ${definition.description}`;
205205 openWorldHint : true ,
206206 } ,
207207 // Allow long running tasks for Actor tools, make it optional for now
208- execution : {
209- taskSupport : 'optional' ,
210- } ,
208+ // TEMP: disable for now as it causes issues with session id error for stdio transport
209+ // execution: {
210+ // taskSupport: 'optional',
211+ // },
211212 } ) ;
212213 }
213214 return tools ;
You can’t perform that action at this time.
0 commit comments