File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -98,6 +98,9 @@ export const streamableHTTPApp = ({
9898 app . use ( morgan ( 'combined' ) ) ;
9999 }
100100
101+ app . get ( '/health' , async ( req : express . Request , res : express . Response ) => {
102+ res . status ( 200 ) . send ( 'OK' ) ;
103+ } ) ;
101104 app . get ( '/' , get ) ;
102105 app . post ( '/' , post ( { clientOptions, mcpOptions } ) ) ;
103106 app . delete ( '/' , del ) ;
Original file line number Diff line number Diff line change @@ -36,10 +36,10 @@ async function getInstructions() {
3636
3737 instructions = `
3838 This is the conductor MCP server. You will use Code Mode to help the user perform
39- actions. You can use search_docs tool to learn about how to take action with this server. Then,
40- you will write TypeScript code using the execute tool take action. It is CRITICAL that you be
41- thoughtful and deliberate when executing code. Always try to entirely solve the problem in code
42- block: it can be as long as you need to get the job done!
39+ actions. You can use search_docs tool to learn about how to take action with this server. Then,
40+ you will write TypeScript code using the execute tool take action. It is CRITICAL that you be
41+ thoughtful and deliberate when executing code. Always try to entirely solve the problem in code
42+ block: it can be as long as you need to get the job done!
4343 ` ;
4444 }
4545
You can’t perform that action at this time.
0 commit comments