mcptut1 logo

mcptut1

by khanakia

mcptut1 is a server application that requires specific build configurations due to issues with `bun build`. It provides instructions on how to install dependencies and run the server.

View on GitHub

Last updated: N/A

mcptut1

To install dependencies:

bun install

To run:

pnpm start

How to build server.ts file

  • using bun build fails when we try to run node dist/server.js

  • so either you can use bun run server.ts or build using tsump and then run node dist/server.js will works fine

  • Got the help from here https://github.com/upstash/mcp-server/blob/main/package.json how to build using tsup