Frontmatter
| id | 7518 |
| title | Make toolService resilient to server-prefixed tool names |
| state | Closed |
| labels | enhancementai |
| assignees | tobiu |
| createdAt | Oct 17, 2025, 12:46 PM |
| updatedAt | Oct 17, 2025, 12:48 PM |
| githubUrl | https://github.com/neomjs/neo/issues/7518 |
| author | tobiu |
| commentsCount | 0 |
| parentIssue | 7501 |
| subIssues | [] |
| subIssuesCompleted | 0 |
| subIssuesTotal | 0 |
| blockedBy | [] |
| blocking | [] |
| closedAt | Oct 17, 2025, 12:48 PM |
The Gemini CLI disambiguates tool name collisions from different MCP servers by prefixing the tool name with the server name (e.g.,
neo-knowledge-base__healthcheck). This causescallToolto fail, as it looks for the exact prefixed name in theserviceMapping.This ticket is to make the
callToolfunction in the sharedtoolService.mjsresilient to this behavior.Acceptance Criteria
callToolfunction inai/mcp/server/toolService.mjsis modified.toolNamecontains__.__as the effective tool name for lookup.