Skip to content

Commit ff38d8a

Browse files
committed
Fix workflow transport
1 parent 5566a97 commit ff38d8a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nexusmcp/workflow_transport.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ async def _handle_list_tools(self) -> types.ListToolsResult:
119119
return types.ListToolsResult(tools=tools)
120120

121121
async def _handle_call_tool(self, params: types.CallToolRequestParams) -> types.CallToolResult:
122-
service, _, operation = params.name.partition("/")
122+
service, _, operation = params.name.partition("_")
123123
nexus_client = workflow.create_nexus_client(
124124
endpoint=self.endpoint,
125125
service=service,

0 commit comments

Comments
 (0)