Content
## MCP Server Template
A template project for quickly starting your mcp server. The usage is as follows:
```bash
git clone https://github.com/LSTM-Kirigaya/mcp-server-template
cd mcp-server-template
npm i
```
Develop in the `src` directory, ensuring that the entry file for the entire project is `index.ts`.
### Debug
To debug the project, run:
```bash
npm run dev
```
Then follow the prompts to open the MCP Inspector in your browser.
### Build
```bash
npm run build
```
## MCP Server Learning Resources
- [MCP Official Introduction & Tutorial](https://modelcontextprotocol.io/introduction)
- [Agent Era Infrastructure | Introduction to MCP Protocol](https://zhuanlan.zhihu.com/p/28859732955)