File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1075,7 +1075,7 @@ async function main() {
1075
1075
process . exit ( 1 ) ;
1076
1076
}
1077
1077
1078
- console . error ( "Starting Notion MCP Server..." ) ;
1078
+ console . info ( "Starting Notion MCP Server..." ) ;
1079
1079
const server = new Server (
1080
1080
{
1081
1081
name : "Notion MCP Server" ,
@@ -1354,7 +1354,7 @@ async function main() {
1354
1354
) ;
1355
1355
1356
1356
server . setRequestHandler ( ListToolsRequestSchema , async ( ) => {
1357
- console . error ( "Received ListToolsRequest" ) ;
1357
+ console . info ( "Received ListToolsRequest" ) ;
1358
1358
return {
1359
1359
tools : [
1360
1360
appendBlockChildrenTool ,
@@ -1379,10 +1379,10 @@ async function main() {
1379
1379
} ) ;
1380
1380
1381
1381
const transport = new StdioServerTransport ( ) ;
1382
- console . error ( "Connecting server to transport..." ) ;
1382
+ console . info ( "Connecting server to transport..." ) ;
1383
1383
await server . connect ( transport ) ;
1384
1384
1385
- console . error ( "Notion MCP Server running on stdio" ) ;
1385
+ console . info ( "Notion MCP Server running on stdio" ) ;
1386
1386
}
1387
1387
1388
1388
main ( ) . catch ( ( error ) => {
You can’t perform that action at this time.
0 commit comments