const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.runmorph.dev/v1/mcp/session/{sessionToken}/messages', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));