Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .changeset/fix-duplicate-mcp-tools.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"roo-cline": patch
---

Fix duplicate MCP tools error when same server is defined in global and project configs

When the same MCP server (e.g., "context7") was defined in both global and project configs, the getMcpServerTools() function generated duplicate tool definitions with the same name, causing API errors like "The tool mcp--context7--resolve-library-id is already defined".

Added deduplication logic to getMcpServerTools() using a Set to track seen tool names. First occurrence wins (project servers take priority over global servers).

Fixes: https://roo-code.sentry.io/issues/7111443956/
194 changes: 194 additions & 0 deletions src/core/prompts/tools/native-tools/__tests__/mcp_server.spec.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,194 @@
import type OpenAI from "openai"
import { getMcpServerTools } from "../mcp_server"
import type { McpHub } from "../../../../../services/mcp/McpHub"
import type { McpServer, McpTool } from "../../../../../shared/mcp"

// Helper type to access function tools
type FunctionTool = OpenAI.Chat.ChatCompletionTool & { type: "function" }

// Helper to get the function property from a tool
const getFunction = (tool: OpenAI.Chat.ChatCompletionTool) => (tool as FunctionTool).function

describe("getMcpServerTools", () => {
const createMockTool = (name: string, description = "Test tool"): McpTool => ({
name,
description,
inputSchema: {
type: "object",
properties: {},
},
})

const createMockServer = (name: string, tools: McpTool[], source: "global" | "project" = "global"): McpServer => ({
name,
config: JSON.stringify({ type: "stdio", command: "test" }),
status: "connected",
source,
tools,
})

const createMockMcpHub = (servers: McpServer[]): Partial<McpHub> => ({
getServers: vi.fn().mockReturnValue(servers),
})

it("should return empty array when mcpHub is undefined", () => {
const result = getMcpServerTools(undefined)
expect(result).toEqual([])
})

it("should return empty array when no servers are available", () => {
const mockHub = createMockMcpHub([])
const result = getMcpServerTools(mockHub as McpHub)
expect(result).toEqual([])
})

it("should generate tool definitions for server tools", () => {
const server = createMockServer("testServer", [createMockTool("testTool")])
const mockHub = createMockMcpHub([server])

const result = getMcpServerTools(mockHub as McpHub)

expect(result).toHaveLength(1)
expect(result[0].type).toBe("function")
expect(getFunction(result[0]).name).toBe("mcp--testServer--testTool")
expect(getFunction(result[0]).description).toBe("Test tool")
})

it("should filter out tools with enabledForPrompt set to false", () => {
const enabledTool = createMockTool("enabledTool")
const disabledTool = { ...createMockTool("disabledTool"), enabledForPrompt: false }
const server = createMockServer("testServer", [enabledTool, disabledTool])
const mockHub = createMockMcpHub([server])

const result = getMcpServerTools(mockHub as McpHub)

expect(result).toHaveLength(1)
expect(getFunction(result[0]).name).toBe("mcp--testServer--enabledTool")
})

it("should deduplicate tools when same server exists in both global and project configs", () => {
const globalServer = createMockServer(
"context7",
[createMockTool("resolve-library-id", "Global description")],
"global",
)
const projectServer = createMockServer(
"context7",
[createMockTool("resolve-library-id", "Project description")],
"project",
)

// Project servers come before global servers (as per McpHub.notifyWebviewOfServerChanges sorting)
const mockHub = createMockMcpHub([projectServer, globalServer])

const result = getMcpServerTools(mockHub as McpHub)

// Should only have one tool, not two
expect(result).toHaveLength(1)
expect(getFunction(result[0]).name).toBe("mcp--context7--resolve-library-id")
// Project server takes priority (comes first in the list)
expect(getFunction(result[0]).description).toBe("Project description")
})

it("should allow tools with different names from the same server", () => {
const server = createMockServer("testServer", [
createMockTool("tool1"),
createMockTool("tool2"),
createMockTool("tool3"),
])
const mockHub = createMockMcpHub([server])

const result = getMcpServerTools(mockHub as McpHub)

expect(result).toHaveLength(3)
const toolNames = result.map((t) => getFunction(t).name)
expect(toolNames).toContain("mcp--testServer--tool1")
expect(toolNames).toContain("mcp--testServer--tool2")
expect(toolNames).toContain("mcp--testServer--tool3")
})

it("should allow tools with same name from different servers", () => {
const server1 = createMockServer("server1", [createMockTool("commonTool")])
const server2 = createMockServer("server2", [createMockTool("commonTool")])
const mockHub = createMockMcpHub([server1, server2])

const result = getMcpServerTools(mockHub as McpHub)

expect(result).toHaveLength(2)
const toolNames = result.map((t) => getFunction(t).name)
expect(toolNames).toContain("mcp--server1--commonTool")
expect(toolNames).toContain("mcp--server2--commonTool")
})

it("should skip servers without tools", () => {
const serverWithTools = createMockServer("withTools", [createMockTool("tool1")])
const serverWithoutTools = createMockServer("withoutTools", [])
const serverWithUndefinedTools: McpServer = {
...createMockServer("undefinedTools", []),
tools: undefined,
}
const mockHub = createMockMcpHub([serverWithTools, serverWithoutTools, serverWithUndefinedTools])

const result = getMcpServerTools(mockHub as McpHub)

expect(result).toHaveLength(1)
expect(getFunction(result[0]).name).toBe("mcp--withTools--tool1")
})

it("should include required fields from tool schema", () => {
const toolWithRequired: McpTool = {
name: "toolWithRequired",
description: "Tool with required fields",
inputSchema: {
type: "object",
properties: {
requiredField: { type: "string" },
optionalField: { type: "number" },
},
required: ["requiredField"],
},
}
const server = createMockServer("testServer", [toolWithRequired])
const mockHub = createMockMcpHub([server])

const result = getMcpServerTools(mockHub as McpHub)

expect(result).toHaveLength(1)
expect(getFunction(result[0]).parameters).toEqual({
type: "object",
properties: {
requiredField: { type: "string" },
optionalField: { type: "number" },
},
additionalProperties: false,
required: ["requiredField"],
})
})

it("should not include required field when schema has no required fields", () => {
const toolWithoutRequired: McpTool = {
name: "toolWithoutRequired",
description: "Tool without required fields",
inputSchema: {
type: "object",
properties: {
optionalField: { type: "string" },
},
},
}
const server = createMockServer("testServer", [toolWithoutRequired])
const mockHub = createMockMcpHub([server])

const result = getMcpServerTools(mockHub as McpHub)

expect(result).toHaveLength(1)
expect(getFunction(result[0]).parameters).toEqual({
type: "object",
properties: {
optionalField: { type: "string" },
},
additionalProperties: false,
})
expect(getFunction(result[0]).parameters).not.toHaveProperty("required")
})
})
18 changes: 14 additions & 4 deletions src/core/prompts/tools/native-tools/mcp_server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import { buildMcpToolName } from "../../../../utils/mcp-name"

/**
* Dynamically generates native tool definitions for all enabled tools across connected MCP servers.
* Deduplicates tools by name to prevent API errors when the same server is defined in both
* global and project configs. Project servers take priority over global servers.
*
* @param mcpHub The McpHub instance containing connected servers.
* @returns An array of OpenAI.Chat.ChatCompletionTool definitions.
Expand All @@ -15,6 +17,8 @@ export function getMcpServerTools(mcpHub?: McpHub): OpenAI.Chat.ChatCompletionTo

const servers = mcpHub.getServers()
const tools: OpenAI.Chat.ChatCompletionTool[] = []
// Track seen tool names to prevent duplicates (e.g., when same server exists in both global and project configs)
const seenToolNames = new Set<string>()

for (const server of servers) {
if (!server.tools) {
Expand All @@ -26,6 +30,16 @@ export function getMcpServerTools(mcpHub?: McpHub): OpenAI.Chat.ChatCompletionTo
continue
}

// Build sanitized tool name for API compliance
// The name is sanitized to conform to API requirements (e.g., Gemini's function name restrictions)
const toolName = buildMcpToolName(server.name, tool.name)

// Skip duplicate tool names - first occurrence wins (project servers come before global servers)
if (seenToolNames.has(toolName)) {
continue
}
seenToolNames.add(toolName)

const originalSchema = tool.inputSchema as Record<string, any> | undefined
const toolInputProps = originalSchema?.properties ?? {}
const toolInputRequired = (originalSchema?.required ?? []) as string[]
Expand All @@ -44,10 +58,6 @@ export function getMcpServerTools(mcpHub?: McpHub): OpenAI.Chat.ChatCompletionTo
parameters.required = toolInputRequired
}

// Build sanitized tool name for API compliance
// The name is sanitized to conform to API requirements (e.g., Gemini's function name restrictions)
const toolName = buildMcpToolName(server.name, tool.name)

const toolDefinition: OpenAI.Chat.ChatCompletionTool = {
type: "function",
function: {
Expand Down
Loading