Skip to content
Closed
Changes from all 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
2 changes: 1 addition & 1 deletion src/brave-search/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ server.setRequestHandler(CallToolRequestSchema, async (request) => {
async function runServer() {
const transport = new StdioServerTransport();
await server.connect(transport);
console.error("Brave Search MCP Server running on stdio");
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that this needs to stay console.error since stdio is being used as the server transport. I made the same correction on servers before and Claude Desktop started throwing errors.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we can leave a comment here to indicate that reasoning then?

console.info("Brave Search MCP Server running on stdio");
}

runServer().catch((error) => {
Expand Down